index.js 236 B

1234567891011121314
  1. 'use strict';
  2. module.exports = function (x) {
  3. if (typeof x !== 'number') {
  4. throw new TypeError('Expected a number');
  5. }
  6. return x === 300 ||
  7. x === 301 ||
  8. x === 302 ||
  9. x === 303 ||
  10. x === 305 ||
  11. x === 307 ||
  12. x === 308;
  13. };