isSymbolObjectRaw
Returns true
if the value is a symbol object, created by calling Object()
on a Symbol
primitive.
const symbol = Symbol('foo');
util.types.isSymbolObject(symbol); // Returns false
util.types.isSymbolObject(Object(symbol)); // Returns true
Content copied to clipboard
Since
v10.0.0