its-set

1.2.3 • Public • Published

Its Set

Deep check if an identifier is defined and not null

npm install its-set

Examples

import itsSet from 'its-set';
 
itsSet('im set'); // true
itsSet(false); // true
itsSet(33); // true
itsSet({ foo: { bar: { baz: 'im set' } } }, 'foo.bar.baz'); // true
 
itsSet(undefined); // false
itsSet(null); // false
itsSet({ foo: { bar: {} } }, 'foo.bar.baz'); // false
itsSet({ foo: { bar: { baz: null } } }, 'foo.bar.baz'); // false

Or...

const { itsSet } = require('its-set');
 
itsSet('im set'); // true

/its-set/

    Package Sidebar

    Install

    npm i its-set

    Weekly Downloads

    10,217

    Version

    1.2.3

    License

    MIT

    Unpacked Size

    5.7 kB

    Total Files

    10

    Last publish

    Collaborators

    • finnfiddle