8 lines
206 B
JavaScript
8 lines
206 B
JavaScript
import { getTag } from '../_internal/getTag.mjs';
|
|
|
|
function isArguments(value) {
|
|
return value !== null && typeof value === 'object' && getTag(value) === '[object Arguments]';
|
|
}
|
|
|
|
export { isArguments };
|