github-pages-deploy-action/node_modules/core-js-pure/internals/require-object-coercible.js
2020-03-06 22:45:40 -05:00

7 lines
228 B
JavaScript

// `RequireObjectCoercible` abstract operation
// https://tc39.github.io/ecma262/#sec-requireobjectcoercible
module.exports = function (it) {
if (it == undefined) throw TypeError("Can't call method on " + it);
return it;
};