2.0.3 • Published 4 years ago

finicky v2.0.3

Weekly downloads
3
License
MIT
Repository
github
Last release
4 years ago

Finicky License NPM version Dependency Status Build Status Coverage Status

Delete property of an object.

Install

npm i finicky --save

Hot to use?

const finicky = require('finicky');

finicky('hello.world', {
    hello: {
        world: 'could be used in browser as well',
    },
});
// returns
({
    hello: {
    },
});

finicky('work-with-divider', '-', {
    work: {
        with: {
            divider: 'could use divider as well',
        },
    },
});
// returns
({
    work: {
        with: {
        },
    },
});

Related

License

MIT