Buckets:
| /** | |
| * @license | |
| * Copyright 2021 Google LLC | |
| * SPDX-License-Identifier: BSD-3-Clause | |
| */ | |
| /** | |
| * Chooses and evaluates a template function from a list based on matching | |
| * the given `value` to a case. | |
| * | |
| * Cases are structured as `[caseValue, func]`. `value` is matched to | |
| * `caseValue` by strict equality. The first match is selected. Case values | |
| * can be of any type including primitives, objects, and symbols. | |
| * | |
| * This is similar to a switch statement, but as an expression and without | |
| * fallthrough. | |
| * | |
| * @example | |
| * | |
| * ```ts | |
| * render() { | |
| * return html` | |
| * ${choose(this.section, [ | |
| * ['home', () => html`<h1>Home</h1>`], | |
| * ['about', () => html`<h1>About</h1>`] | |
| * ], | |
| * () => html`<h1>Error</h1>`)} | |
| * `; | |
| * } | |
| * ``` | |
| */ | |
| export declare const choose: <T, V, K extends T = T>(value: T, cases: Array<[K, () => V]>, defaultCase?: () => V) => V | undefined; | |
| //# sourceMappingURL=choose.d.ts.map |
Xet Storage Details
- Size:
- 932 Bytes
- Xet hash:
- c2d735f1f8f9e5ddaf12ee91abe74bde2d6614454285bb1e3f0a79a78023b9ba
·
Xet efficiently stores files, intelligently splitting them into unique chunks and accelerating uploads and downloads. More info.