blob: 40557966d5390abf3fd275b8f9684a81d9f20f8f [file] [log] [blame]
var isObject = require('../internals/is-object');
module.exports = function (it) {
if (!isObject(it)) {
throw TypeError(String(it) + ' is not an object');
} return it;
};