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