a-constructor.js 369 B

1234567891011
  1. 'use strict';
  2. var isConstructor = require('../internals/is-constructor');
  3. var tryToString = require('../internals/try-to-string');
  4. var $TypeError = TypeError;
  5. // `Assert: IsConstructor(argument) is true`
  6. module.exports = function (argument) {
  7. if (isConstructor(argument)) return argument;
  8. throw new $TypeError(tryToString(argument) + ' is not a constructor');
  9. };