UNPKG

208 BJavaScriptView Raw
1var isObject = require('../internals/is-object');
2
3module.exports = function (it) {
4 if (!isObject(it) && it !== null) {
5 throw TypeError("Can't set " + String(it) + ' as a prototype');
6 } return it;
7};