dotfiles/vscode/.vscode/extensions/matangover.mypy-0.3.1/node_modules/object-keys/isArguments.js
Errol Sancaktar 5f8db31398 alacritty
2024-07-15 17:06:13 -06:00

18 lines
422 B
JavaScript

'use strict';
var toStr = Object.prototype.toString;
module.exports = function isArguments(value) {
var str = toStr.call(value);
var isArgs = str === '[object Arguments]';
if (!isArgs) {
isArgs = str !== '[object Array]' &&
value !== null &&
typeof value === 'object' &&
typeof value.length === 'number' &&
value.length >= 0 &&
toStr.call(value.callee) === '[object Function]';
}
return isArgs;
};