`is-arguments` can be replaced with ```js const isArguments = (val) => val?.[Symbol.toStringTag] === undefined && Object.prototype.toString.call(val) === '[object Arguments]'; ```
is-argumentscan be replaced with