massive update, probably broken
[dotfiles/.git] / .config / coc / extensions / node_modules / coc-prettier / node_modules / core-js / internals / is-callable.js
1 // `IsCallable` abstract operation
2 // https://tc39.es/ecma262/#sec-iscallable
3 module.exports = function (argument) {
4   return typeof argument == 'function';
5 };