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

Function isDate

python/pythonmonkey/builtin_modules/util.js:54–57  ·  view source on GitHub ↗

* @return {o is Date}

(o)

Source from the content-addressed store, hash-verified

52 * @return {o is Date}
53 */
54function isDate(o)
55{
56 return objectToString(o) === '[object Date]' || o instanceof Date;
57}
58
59/**
60 * @return {o is Set}

Callers 1

formatValueFunction · 0.85

Calls 1

objectToStringFunction · 0.85

Tested by

no test coverage detected