GoScrobble/web/node_modules/core-js-pure/internals/an-object.js

8 lines
180 B
JavaScript
Raw Normal View History

2022-04-25 02:47:15 +00:00
var isObject = require('../internals/is-object');
module.exports = function (it) {
if (!isObject(it)) {
throw TypeError(String(it) + ' is not an object');
} return it;
};