Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Bower components Debian packages RPM packages NuGet packages

sentry / @nestjs/common   js

Repository URL to install this package:

Version: 7.0.10 

/ utils / shared.utils.d.ts

export declare const isUndefined: (obj: any) => obj is undefined;
export declare const isObject: (fn: any) => fn is object;
export declare const isPlainObject: (fn: any) => fn is object;
export declare const validatePath: (path?: string) => string;
export declare const isFunction: (fn: any) => boolean;
export declare const isString: (fn: any) => fn is string;
export declare const isConstructor: (fn: any) => boolean;
export declare const isNil: (obj: any) => obj is null;
export declare const isEmpty: (array: any) => boolean;
export declare const isSymbol: (fn: any) => fn is symbol;