aboutsummaryrefslogtreecommitdiff
path: root/node_modules/core-js/modules/$.an-object.js
blob: e5c808fd692b52c15ebb718ba74ab2c77ac36634 (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;
};