Your IP : 216.73.216.86


Current Path : /home/emeraadmin/www/node_modules/core-js-pure/internals/
Upload File :
Current File : /home/emeraadmin/www/node_modules/core-js-pure/internals/a-callable.js

'use strict';
var isCallable = require('../internals/is-callable');
var tryToString = require('../internals/try-to-string');

var $TypeError = TypeError;

// `Assert: IsCallable(argument) is true`
module.exports = function (argument) {
  if (isCallable(argument)) return argument;
  throw new $TypeError(tryToString(argument) + ' is not a function');
};