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

Function isMap

python/pythonmonkey/builtin_modules/util.js:70–73  ·  view source on GitHub ↗

* @return {o is Map}

(o)

Source from the content-addressed store, hash-verified

68 * @return {o is Map}
69 */
70function isMap(o)
71{
72 return objectToString(o) === '[object Map]' || o instanceof Map;
73}
74
75/**
76 * @return {o is DataView}

Callers 1

formatValueFunction · 0.85

Calls 1

objectToStringFunction · 0.85

Tested by

no test coverage detected