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.
 
 
 
 

8 line
201 B

  1. /**
  2. * Check if `a` is one of `[...b]`
  3. */
  4. export function isOneOf(a, b) {
  5. if (b === void 0) { b = []; }
  6. return b.some(function (v) { return a === v; });
  7. }
  8. //# sourceMappingURL=is-one-of.js.map