lepu-test-platform-web/node_modules/core-js/internals/an-object.js

8 lines
180 B
JavaScript
Raw Permalink Normal View History

var isObject = require('../internals/is-object');
module.exports = function (it) {
if (!isObject(it)) {
throw TypeError(String(it) + ' is not an object');
} return it;
};