MCPcopy Create free account
hub / github.com/microsoft/SandDance / isNonNullObject

Function isNonNullObject

docs/app/js/sanddance-app.js:6894–6896  ·  view source on GitHub ↗
(value)

Source from the content-addressed store, hash-verified

6892 return isNonNullObject(value) && !isSpecial(value);
6893};
6894function isNonNullObject(value) {
6895 return !!value && typeof value === "object";
6896}
6897function isSpecial(value) {
6898 var stringValue = Object.prototype.toString.call(value);
6899 return stringValue === "[object RegExp]" || stringValue === "[object Date]" || isReactElement(value);

Callers 1

isMergeableObjectFunction · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected