source:
node_modules/es-toolkit/dist/compat/predicate/isArguments.mjs@
a762898
| Last change on this file since a762898 was a762898, checked in by , 6 months ago | |
|---|---|
|
|
| File size: 206 bytes | |
| Line | |
|---|---|
| 1 | import { getTag } from '../_internal/getTag.mjs'; |
| 2 | |
| 3 | function isArguments(value) { |
| 4 | return value !== null && typeof value === 'object' && getTag(value) === '[object Arguments]'; |
| 5 | } |
| 6 | |
| 7 | export { isArguments }; |
Note:
See TracBrowser
for help on using the repository browser.
