UNPKG

is-arguments

Version:

Is this an arguments object? It's a harder question than you think.

7 lines (5 loc) 187 B
declare namespace isArguments { type isArgumentsFn = (value: unknown) => value is IArguments; } declare function isArguments(value: unknown): value is IArguments; export = isArguments;