util.types.isStringObject(value)
如果值是字符串对象(例如由 new String()
创建),则返回 true
。
util.types.isStringObject('foo'); // 返回 false
util.types.isStringObject(new String('foo')); // 返回 true
如果值是字符串对象(例如由 new String()
创建),则返回 true
。
util.types.isStringObject('foo'); // 返回 false
util.types.isStringObject(new String('foo')); // 返回 true