MCPcopy
hub / github.com/mongodb/node-mongodb-native / isObject

Function isObject

src/utils.ts:131–133  ·  view source on GitHub ↗
(arg: unknown)

Source from the content-addressed store, hash-verified

129 */
130
131export function isObject(arg: unknown): arg is object {
132 return '[object Object]' === TO_STRING(arg);
133}
134
135/** @internal */
136export function mergeOptions<T, S>(target: T, source: S): T & S {

Callers 2

isRecordFunction · 0.85

Calls 1

TO_STRINGFunction · 0.85

Tested by

no test coverage detected