Spaces:
Runtime error
Runtime error
File size: 154 Bytes
1fa8efd | 1 2 3 4 5 6 | var isObject = require('./_is-object');
module.exports = function (it) {
if (!isObject(it)) throw TypeError(it + ' is not an object!');
return it;
};
|