// package
type: "module"
// preferences
// replacements (1)
This 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]';