util-ex
Version:
Browser-friendly enhanced util fully compatible with standard node.js
16 lines (15 loc) • 496 B
TypeScript
/**
* Checks if a value is an `arguments` object.
* @param {*} value - The value to check.
* @returns {boolean} Returns `true` if `value` is an `arguments` object, else `false`.
* @example
* ```js
* function myFunction() {
* return isArguments(arguments);
* }
* console.log(myFunction()); // true, since the `arguments` object is an instance of `Arguments`
* isArguments([1, 2, 3]); // => false
* ```
*/
export function isArguments(value: any): boolean;
export default isArguments;