@typeforce/is-undefined
TypeScript icon, indicating that this package has built-in type declarations

1.0.1 • Public • Published

is-undefined

NPM NPM CDN LICENSE

Determine if a value is undefined.

Usage

    npm install @typeforce/is-undefined --save   # Install package via NPM
    import { expect } from "chai";
    import isUndefined from "@typeforce/is-undefined";

    expect(isUndefined(({ x: 42 }).y)).to.be.true;
    expect(isUndefined(undefined)).to.be.true;
    expect(isUndefined(void 0)).to.be.true;

    expect(isUndefined(null)).to.be.false;
    expect(isUndefined(42)).to.be.false;

This package contains TypeScript type declarations. Furthermore, the package uses TypeScript type guards to allow type inference to influence IntelliSense.

    if (isUndefined(x)) {
        // IntelliSense now knows `x` is `undefined`.
        let y: undefined = x;
    }

Content Delivery Network (CDN)

This package can be imported via unpkg as demonstrated below.

    <script src="https://unpkg.com/@typeforce/is-undefined/dist/index.min.js"></script>
    <script type="application/javascript">
        var x = undefined;
        if (isUndefined(x)) {
            // `x` is `undefined`!
        }
    </script>

Build & Test

When building the project, a folder named dist/ will be created if it does not already exist, where the compiled code will be outputted to. Type declaration files will also be generated and outputted to the dist/ folder.

A minified Javascript version of the entire project will be generated and outputted to dist/index.min.js.

    npm install     # Installs dependencies.
    npm run build   # Build the project.

This package uses Gulp for building, and Chai and Mocha for testing.

    npm test       # Run tests.

License

Refer to the LICENSE file for license information.

Dependencies (0)

    Dev Dependencies (10)

    Package Sidebar

    Install

    npm i @typeforce/is-undefined

    Weekly Downloads

    1

    Version

    1.0.1

    License

    MIT

    Unpacked Size

    6.96 kB

    Total Files

    8

    Last publish

    Collaborators

    • mgthomas99