You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- /**
- * Check if `a` is one of `[...b]`
- */
- export function isOneOf(a, b) {
- if (b === void 0) { b = []; }
- return b.some(function (v) { return a === v; });
- }
- //# sourceMappingURL=is-one-of.js.map
|