All Downloads are FREE. Search and download functionalities are using the official Maven repository.

package.internals.a-callable.js Maven / Gradle / Ivy

There is a newer version: 3.39.0
Show newest version
'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');
};




© 2015 - 2024 Weber Informatics LLC | Privacy Policy