PAMapp/node_modules/core-js/internals/is-callable.js
@@ -1,5 +1,5 @@ // `IsCallable` abstract operation // https://tc39.es/ecma262/#sec-iscallable module.exports = function (argument) { return typeof argument === 'function'; return typeof argument == 'function'; };