# lodash isArguments

检查 value 是否是一个类 arguments 对象。

概要

_.isArguments(value)

检查 value 是否是一个类 arguments 对象。

添加版本

0.1.0

参数

  1. value (*): 要检查的值。

返回 (boolean): 如果 value 是一个 arguments 对象 返回 true,否则返回 false

例子


_.isArguments(function() { return arguments; }());
// => true
 
_.isArguments([1, 2, 3]);
// => false

Last Updated: 6/17/2023, 6:57:19 PM