util.types.isArgumentsObject(value)


如果值是 arguments 对象,则返回 true

【Returns true if the value is an arguments object.】

function foo() {
  util.types.isArgumentsObject(arguments);  // Returns true
}