MCPcopy
hub / github.com/nestjs/nest / isUndefined

Function isUndefined

packages/common/utils/shared.utils.ts:1–2  ·  view source on GitHub ↗
(obj: any)

Source from the content-addressed store, hash-verified

1export const isUndefined = (obj: any): obj is undefined =>
2 typeof obj === 'undefined';
3
4export const isObject = (fn: any): fn is object =>
5 !isNil(fn) && typeof fn === 'object';

Callers 15

insertImportMethod · 0.90
isRouteInfoMethod · 0.90
bindHandlerMethod · 0.90
isCustomClassMethod · 0.90
isCustomFactoryMethod · 0.90
isCustomUseExistingMethod · 0.90
addCustomClassMethod · 0.90
loadInstanceMethod · 0.90
loadMiddlewareMethod · 0.90

Calls

no outgoing calls

Tested by

no test coverage detected