checkInRHS.js 354 B

123456789101112131415
  1. "use strict";
  2. Object.defineProperty(exports, "__esModule", {
  3. value: true
  4. });
  5. exports.default = _checkInRHS;
  6. function _checkInRHS(value) {
  7. if (Object(value) !== value) {
  8. throw TypeError("right-hand side of 'in' should be an object, got " + (value !== null ? typeof value : "null"));
  9. }
  10. return value;
  11. }
  12. //# sourceMappingURL=checkInRHS.js.map