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

Function isMergeableObject

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

Source from the content-addressed store, hash-verified

6889var parcelHelpers = require("@parcel/transformer-js/src/esmodule-helpers.js");
6890parcelHelpers.defineInteropFlag(exports);
6891var isMergeableObject = function isMergeableObject(value) {
6892 return isNonNullObject(value) && !isSpecial(value);
6893};
6894function isNonNullObject(value) {
6895 return !!value && typeof value === "object";
6896}

Callers

nothing calls this directly

Calls 2

isNonNullObjectFunction · 0.70
isSpecialFunction · 0.70

Tested by

no test coverage detected