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

Function isDataView

python/pythonmonkey/builtin_modules/util.js:78–81  ·  view source on GitHub ↗

* @return {o is DataView}

(o)

Source from the content-addressed store, hash-verified

76 * @return {o is DataView}
77 */
78function isDataView(o)
79{
80 return objectToString(o) === '[object DataView]' || o instanceof DataView;
81}
82
83/**
84 * V8 IsJSExternalObject

Callers 1

formatValueFunction · 0.85

Calls 1

objectToStringFunction · 0.85

Tested by

no test coverage detected