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

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

There is a newer version: 3.39.0
Show newest version
'use strict';
var $documentAll = require('../internals/document-all');

var documentAll = $documentAll.all;

// `IsCallable` abstract operation
// https://tc39.es/ecma262/#sec-iscallable
module.exports = $documentAll.IS_HTMLDDA ? function (argument) {
  return typeof argument == 'function' || argument === documentAll;
} : function (argument) {
  return typeof argument == 'function';
};




© 2015 - 2024 Weber Informatics LLC | Privacy Policy