https://github.com/coderaiser/finicky
delete property of an object
https://github.com/coderaiser/finicky
javascript json nodejs object
Last synced: 3 months ago
JSON representation
delete property of an object
- Host: GitHub
- URL: https://github.com/coderaiser/finicky
- Owner: coderaiser
- License: mit
- Created: 2017-09-21T09:02:15.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2020-11-10T18:59:59.000Z (over 5 years ago)
- Last Synced: 2025-12-24T23:32:16.346Z (6 months ago)
- Topics: javascript, json, nodejs, object
- Language: JavaScript
- Size: 14.6 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: ChangeLog
- License: LICENSE
Awesome Lists containing this project
README
# Finicky [![License][LicenseIMGURL]][LicenseURL] [![NPM version][NPMIMGURL]][NPMURL] [![Dependency Status][DependencyStatusIMGURL]][DependencyStatusURL] [![Build Status][BuildStatusIMGURL]][BuildStatusURL] [![Coverage Status][CoverageIMGURL]][CoverageURL]
Delete property of an object.
## Install
`npm i finicky --save`
## Hot to use?
```js
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
- [jessy](https://github.com/coderaiser/jessy "jessy") - get value by object property.
- [nessy](https://github.com/coderaiser/nessy "nessy") - set value in nested object.
- [all-object-keys](https://github.com/coderaiser/all-object-keys "all-object-keys") - get all keys of object.
## License
MIT
[NPMIMGURL]: https://img.shields.io/npm/v/finicky.svg?style=flat
[BuildStatusIMGURL]: https://img.shields.io/travis/coderaiser/finicky/master.svg?style=flat
[DependencyStatusIMGURL]: https://img.shields.io/david/coderaiser/finicky.svg?style=flat
[LicenseIMGURL]: https://img.shields.io/badge/license-MIT-317BF9.svg?style=flat
[NPMURL]: https://npmjs.org/package/finicky "npm"
[BuildStatusURL]: https://travis-ci.org/coderaiser/finicky "Build Status"
[DependencyStatusURL]: https://david-dm.org/coderaiser/finicky "Dependency Status"
[LicenseURL]: https://tldrlegal.com/license/mit-license "MIT License"
[CoverageURL]: https://coveralls.io/github/coderaiser/finicky?branch=master
[CoverageIMGURL]: https://coveralls.io/repos/coderaiser/finicky/badge.svg?branch=master&service=github