an-object.js 180 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 var isObject = require('../internals/is-object'); module.exports = function (it) { if (!isObject(it)) { throw TypeError(String(it) + ' is not an object'); } return it; };