amis-rpc-design/node_modules/core-js/internals/a-callable.js
2023-10-07 19:42:30 +08:00

12 lines
350 B
JavaScript

'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 $TypeError(tryToString(argument) + ' is not a function');
};