UNPKG

@terminus/ngx-tools

Version:

[![CircleCI][circle-badge]][circle-link] [![codecov][codecov-badge]][codecov-project] [![semantic-release][semantic-release-badge]][semantic-release] [![MIT License][license-image]][license-url] <br> [![NPM version][npm-version-image]][npm-url] [![Github

13 lines (12 loc) 343 B
/** * Helper function to determine if input is undefined. * * @param input - the input being tested * @returns boolean * * @example * isUndefined(undefined) // Returns: true * isUndefined(null) // Returns: false * isUndefined('foo') // Returns: false */ export declare const isUndefined: (input: any) => input is undefined;