aboutsummaryrefslogtreecommitdiff
path: root/node_modules/core-js/modules/$.strict-new.js
blob: 8bab9ed15a6a82ade262bc4718cab8289aae4d49 (plain)
1
2
3
4
module.exports = function(it, Constructor, name){
  if(!(it instanceof Constructor))throw TypeError(name + ": use the 'new' operator!");
  return it;
};