aboutsummaryrefslogtreecommitdiff
path: root/node_modules/babel-runtime/node_modules/core-js/library/modules/_an-object.js
blob: b1c316cd2bac00d9ff96fe6ecc5f4b2ab2899a44 (plain)
1
2
3
4
5
var isObject = require('./_is-object');
module.exports = function (it) {
  if (!isObject(it)) throw TypeError(it + ' is not an object!');
  return it;
};