// package
is-arguments
type: "module"
// preferences
// replacements (1)
snippet::is-arguments
Simple or drop-in replacementThis package is no longer necessary. You can use `Object.prototype.toString.call(obj) === "[object Arguments]"`
// example
const isArguments = (val) =>
Object.prototype.toString.call(val) ===
'[object Arguments]';