MCPcopy Create free account
hub / github.com/Distributive-Network/PythonMonkey / isSet

Function isSet

python/pythonmonkey/builtin_modules/util.js:62–65  ·  view source on GitHub ↗

* @return {o is Set}

(o)

Source from the content-addressed store, hash-verified

60 * @return {o is Set}
61 */
62function isSet(o)
63{
64 return objectToString(o) === '[object Set]' || o instanceof Set;
65}
66
67/**
68 * @return {o is Map}

Callers 1

formatValueFunction · 0.85

Calls 1

objectToStringFunction · 0.85

Tested by

no test coverage detected