require-object-coercible.js 251 B

12345678
  1. var $TypeError = TypeError;
  2. // `RequireObjectCoercible` abstract operation
  3. // https://tc39.es/ecma262/#sec-requireobjectcoercible
  4. module.exports = function (it) {
  5. if (it == undefined) throw $TypeError("Can't call method on " + it);
  6. return it;
  7. };