Nodeutil/typesisStringObjectfunction isStringObject#isStringObject(object: unknown): object is StringReturns true if the value is a string object, e.g. created by new String(). util.types.isStringObject('foo'); // Returns false util.types.isStringObject(new String('foo')); // Returns true Parameters ##object: unknownReturn Type #object is String
function isStringObject#isStringObject(object: unknown): object is StringReturns true if the value is a string object, e.g. created by new String(). util.types.isStringObject('foo'); // Returns false util.types.isStringObject(new String('foo')); // Returns true Parameters ##object: unknownReturn Type #object is String