{"maintainers":[{"name":"anonymous","email":"github@sellside.com"},{"name":"anonymous","email":"npm@tschinder.de"}],"keywords":["del","delete","key","object","omit","prop","property","remove","unset","value"],"dist-tags":{"latest":"2.0.1"},"author":{"name":"Jon Schlinkert","url":"https://github.com/jonschlinkert"},"description":"Delete nested properties from an object using dot notation.","readme":"# unset-value [![NPM version](https://img.shields.io/npm/v/unset-value.svg?style=flat)](https://www.npmjs.com/package/unset-value) [![NPM monthly downloads](https://img.shields.io/npm/dm/unset-value.svg?style=flat)](https://npmjs.org/package/unset-value) [![NPM total downloads](https://img.shields.io/npm/dt/unset-value.svg?style=flat)](https://npmjs.org/package/unset-value) [![Linux Build Status](https://img.shields.io/travis/jonschlinkert/unset-value.svg?style=flat&label=Travis)](https://travis-ci.org/jonschlinkert/unset-value) \n\n> Delete nested properties from an object using dot notation.\n\nPlease consider following this project's author, [Jon Schlinkert](https://github.com/jonschlinkert), and consider starring the project to show your :heart: and support.\n\n## Install\nInstall with [npm](https://www.npmjs.com/):\n\n```sh\n$ npm install --save unset-value\n```\n\n## Usage\n\n```js\nvar unset = require('unset-value');\nunset(obj, prop);\n```\n\n### Params\n\n* `obj` **{object}**: The object to unset `prop` on\n* `prop` **{string | string[]}**: The property to unset. Dot-notation may be used or an array of nested properties.\n\n## Examples\n\n### Updates the object when a property is deleted\n\n```js\nvar obj = {a: 'b'};\nunset(obj, 'a');\nconsole.log(obj);\n//=> {}\n```\n\n### Returns true when a property is deleted\n\n```js\nunset({a: 'b'}, 'a') // true\n```\n\n### Returns `true` when a property does not exist\n\nThis is consistent with `delete` behavior in that it does not\nthrow when a property does not exist.\n\n```js\nunset({a: {b: {c: 'd'}}}, 'd') // true\n```\n\n### delete nested values\n\n```js\nvar one = {a: {b: {c: 'd'}}};\nunset(one, 'a.b');\nconsole.log(one);\n//=> {a: {}}\n\nvar two = {a: {b: {c: 'd'}}};\nunset(two, ['a', 'b', 'c']);\nconsole.log(two);\n//=> {a: {b: {}}}\n\nvar three = {a: {b: {c: 'd', e: 'f'}}};\nunset(three, 'a.b.c');\nconsole.log(three);\n//=> {a: {b: {e: 'f'}}}\n```\n\n### throws on invalid args\n\n```js\nunset();\n// 'expected an object.'\n```\n\n## About\n<details>\n  <summary><strong>Contributing</strong></summary>\n\nPull requests and stars are always welcome. For bugs and feature requests, [please create an issue](../../issues/new).\n\n</details>\n\n<details>\n  <summary><strong>Running Tests</strong></summary>\n\nRunning and reviewing unit tests is a great way to get familiarized with a library and its API. You can install dependencies and run tests with the following command:\n\n```sh\n$ npm install && npm test\n```\n\n</details>\n\n<details>\n  <summary><strong>Building docs</strong></summary>\n\n_(This project's readme.md is generated by [verb](https://github.com/verbose/verb-generate-readme), please don't edit the readme directly. Any changes to the readme must be made in the [.verb.md](.verb.md) readme template.)_\n\nTo generate the readme, run the following command:\n\n```sh\n$ npm install -g verbose/verb#dev verb-generate-readme && verb\n```\n\n</details>\n\n### Related projects\n\nYou might also be interested in these projects: \n\n- [get-value](https://www.npmjs.com/package/get-value): Use property paths like 'a.b.c' to get a nested value from an object. Even works… [more](https://github.com/jonschlinkert/get-value) | [homepage](https://github.com/jonschlinkert/get-value \"Use property paths like 'a.b.c' to get a nested value from an object. Even works when keys have dots in them (no other dot-prop library can do this!).\")\n- [get-values](https://www.npmjs.com/package/get-values): Return an array of all values from the given object. | [homepage](https://github.com/jonschlinkert/get-values \"Return an array of all values from the given object.\")\n- [omit-value](https://www.npmjs.com/package/omit-value): Omit properties from an object or deeply nested property of an object using object path… [more](https://github.com/jonschlinkert/omit-value) | [homepage](https://github.com/jonschlinkert/omit-value \"Omit properties from an object or deeply nested property of an object using object path notation.\")\n- [put-value](https://www.npmjs.com/package/put-value): Update only existing values from an object, works with dot notation paths like `a.b.c` and… [more](https://github.com/tunnckocore/put-value#readme) | [homepage](https://github.com/tunnckocore/put-value#readme \"Update only existing values from an object, works with dot notation paths like `a.b.c` and support deep nesting.\")\n- [set-value](https://www.npmjs.com/package/set-value): Create nested values and any intermediaries using dot notation (`'a.b.c'`) paths. | [homepage](https://github.com/jonschlinkert/set-value \"Create nested values and any intermediaries using dot notation (`'a.b.c'`) paths.\")\n- [union-value](https://www.npmjs.com/package/union-value): Set an array of unique values as the property of an object. Supports setting deeply… [more](https://github.com/jonschlinkert/union-value) | [homepage](https://github.com/jonschlinkert/union-value \"Set an array of unique values as the property of an object. Supports setting deeply nested properties using using object-paths/dot notation.\")\n- [upsert-value](https://www.npmjs.com/package/upsert-value): Update or set nested values and any intermediaries with dot notation (`'a.b.c'`) paths. | [homepage](https://github.com/doowb/upsert-value \"Update or set nested values and any intermediaries with dot notation (`'a.b.c'`) paths.\")  \n\n### Contributors\n| **Commits** | **Contributor** |  \n| --- | --- |  \n| 11 | [jonschlinkert](https://github.com/jonschlinkert) |  \n| 4  | [danez](https://github.com/danez) |  \n| 2  | [wtgtybhertgeghgtwtg](https://github.com/wtgtybhertgeghgtwtg) |  \n| 1  | [TrySound](https://github.com/TrySound) |  \n| 1  | [bluelovers](https://github.com/bluelovers) |  \n\n### Author\n**Jon Schlinkert**\n+ [GitHub Profile](https://github.com/jonschlinkert)\n+ [Twitter Profile](https://twitter.com/jonschlinkert)\n+ [LinkedIn Profile](https://linkedin.com/in/jonschlinkert)\n\n### License\nCopyright © 2021, [Jon Schlinkert](https://github.com/jonschlinkert).\nReleased under the [MIT License](LICENSE).\n\n***\n\n_This file was generated by [verb-generate-readme](https://github.com/verbose/verb-generate-readme), v0.8.0, on March 18, 2021._\n\n","repository":{"type":"git","url":"git+https://github.com/jonschlinkert/unset-value.git"},"users":{"rocket0191":true},"bugs":{"url":"https://github.com/jonschlinkert/unset-value/issues"},"license":"MIT","versions":{"0.1.0":{"name":"unset-value","description":"Delete nested properties from an object using dot notation.","version":"0.1.0","homepage":"https://github.com/jonschlinkert/unset-value","author":{"name":"Jon Schlinkert","url":"https://github.com/jonschlinkert"},"repository":{"type":"git","url":"git+https://github.com/jonschlinkert/unset-value.git"},"bugs":{"url":"https://github.com/jonschlinkert/unset-value/issues"},"license":"MIT","files":["index.js"],"main":"index.js","engines":{"node":">=0.10.0"},"scripts":{"test":"mocha"},"dependencies":{"has-value":"^0.2.0","isobject":"^2.0.0"},"devDependencies":{"mocha":"*","should":"*"},"keywords":[],"verb":{"related":{"list":["get-value","get-values","omit-value","put-value","set-value","union-value","upsert-value"]}},"_id":"unset-value@0.1.0","_shasum":"fbaafe2fe1f17a9a58e25d1fc48c58fb47cf0ec6","_from":".","_npmVersion":"2.10.1","_nodeVersion":"0.12.4","_npmUser":{"name":"anonymous","email":"github@sellside.com"},"maintainers":[{"name":"anonymous","email":"github@sellside.com"}],"dist":{"shasum":"fbaafe2fe1f17a9a58e25d1fc48c58fb47cf0ec6","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/unset-value/-/unset-value-0.1.0.tgz","integrity":"sha512-tGIJveJZ5JOJETKQQRIWzwIc3s9PQP83PJmgigP8dM3EnFiDUHInUHmBWgT4dGda36AaWB4lgW98HF2Ei26l7Q==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIEWRp09Xncn4dG9J1chtS2D5eyGbh6eV5QmigXuZP6mLAiBsuCF4p+oKrpr8krFOMZX89Dp3zSX+x2tVLMSOg7/CLA=="}]},"directories":{}},"0.1.1":{"name":"unset-value","description":"Delete nested properties from an object using dot notation.","version":"0.1.1","homepage":"https://github.com/jonschlinkert/unset-value","author":{"name":"Jon Schlinkert","url":"https://github.com/jonschlinkert"},"repository":{"type":"git","url":"git+https://github.com/jonschlinkert/unset-value.git"},"bugs":{"url":"https://github.com/jonschlinkert/unset-value/issues"},"license":"MIT","files":["index.js"],"main":"index.js","engines":{"node":">=0.10.0"},"scripts":{"test":"mocha"},"dependencies":{"has-value":"^0.2.1","isobject":"^2.0.0"},"devDependencies":{"mocha":"*","should":"*"},"verb":{"related":{"description":"","list":["get-value","get-values","omit-value","put-value","set-value","union-value","upsert-value"]}},"keywords":["del","delete","key","object","omit","prop","property","remove","unset","value"],"gitHead":"6fc6e855657bec006a2adbe136391a5cbd169724","_id":"unset-value@0.1.1","_shasum":"60bfdcaeaa16a4db88c95e6e79c18dd1eef97922","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.1","_npmUser":{"name":"anonymous","email":"github@sellside.com"},"maintainers":[{"name":"anonymous","email":"github@sellside.com"}],"dist":{"shasum":"60bfdcaeaa16a4db88c95e6e79c18dd1eef97922","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/unset-value/-/unset-value-0.1.1.tgz","integrity":"sha512-9j8r2+zRr9K97LEm+MBy3E/wV29ZhsmG0+jBK49qUpnTUaHtCqiVpSm3JnjwdIwv17dsGdLqjE1GPVLj3KGkUQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCsgK8Su94pWVEEJOAtWAwD0uxWZDI5/su8NPMbgJmLYwIgX0/sEBCRb0twzMHA2USmca9zEaUOlU08gkj44Aeh5mA="}]},"directories":{}},"0.1.2":{"name":"unset-value","description":"Delete nested properties from an object using dot notation.","version":"0.1.2","homepage":"https://github.com/jonschlinkert/unset-value","author":{"name":"Jon Schlinkert","url":"https://github.com/jonschlinkert"},"contributors":[{"email":"wtgtybhertgeghgtwtg@gmail.com","url":"https://github.com/wtgtybhertgeghgtwtg"},{"name":"Jon Schlinkert","email":"jon.schlinkert@sellside.com","url":"http://twitter.com/jonschlinkert"}],"repository":{"type":"git","url":"git+https://github.com/jonschlinkert/unset-value.git"},"bugs":{"url":"https://github.com/jonschlinkert/unset-value/issues"},"license":"MIT","files":["index.js"],"main":"index.js","engines":{"node":">=0.10.0"},"scripts":{"test":"mocha"},"dependencies":{"has-value":"^0.3.1","isobject":"^3.0.0"},"devDependencies":{"gulp-format-md":"^0.1.11","mocha":"*","should":"*"},"keywords":["del","delete","key","object","omit","prop","property","remove","unset","value"],"verb":{"related":{"list":["get-value","get-values","omit-value","put-value","set-value","union-value","upsert-value"]},"toc":false,"layout":"default","tasks":["readme"],"plugins":["gulp-format-md"],"lint":{"reflinks":true}},"gitHead":"b4eb4edfca512c173cb91eea08a0f0effa5df9fc","_id":"unset-value@0.1.2","_shasum":"506810b867f27c2a5a6e9b04833631f6de58d310","_from":".","_npmVersion":"4.1.2","_nodeVersion":"7.5.0","_npmUser":{"name":"anonymous","email":"github@sellside.com"},"maintainers":[{"name":"anonymous","email":"github@sellside.com"}],"dist":{"shasum":"506810b867f27c2a5a6e9b04833631f6de58d310","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/unset-value/-/unset-value-0.1.2.tgz","integrity":"sha512-yhv5I4TsldLdE3UcVQn0hD2T5sNCPv4+qm/CTUpRKIpwthYRIipsAPdsrNpOI79hPQa0rTTeW22Fq6JWRcTgNg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCtSFZyOBpmf09ZlwhPqLKDH0dbBA1VG0Xja8oRT7Xy2QIhAP/YKuspE4aNpiLTk10+NO3sZ7qGV0eHh6VfBhvKu7lR"}]},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/unset-value-0.1.2.tgz_1488061615885_0.7473359440919012"},"directories":{}},"1.0.0":{"name":"unset-value","description":"Delete nested properties from an object using dot notation.","version":"1.0.0","homepage":"https://github.com/jonschlinkert/unset-value","author":{"name":"Jon Schlinkert","url":"https://github.com/jonschlinkert"},"contributors":[{"email":"wtgtybhertgeghgtwtg@gmail.com","url":"https://github.com/wtgtybhertgeghgtwtg"},{"name":"Jon Schlinkert","email":"jon.schlinkert@sellside.com","url":"http://twitter.com/jonschlinkert"}],"repository":{"type":"git","url":"git+https://github.com/jonschlinkert/unset-value.git"},"bugs":{"url":"https://github.com/jonschlinkert/unset-value/issues"},"license":"MIT","files":["index.js"],"main":"index.js","engines":{"node":">=0.10.0"},"scripts":{"test":"mocha"},"dependencies":{"has-value":"^0.3.1","isobject":"^3.0.0"},"devDependencies":{"gulp-format-md":"^0.1.11","mocha":"*","should":"*"},"keywords":["del","delete","key","object","omit","prop","property","remove","unset","value"],"verb":{"related":{"list":["get-value","get-values","omit-value","put-value","set-value","union-value","upsert-value"]},"toc":false,"layout":"default","tasks":["readme"],"plugins":["gulp-format-md"],"lint":{"reflinks":true}},"gitHead":"36b62353cde18d6be17a1c0dc080fddcc262d2da","_id":"unset-value@1.0.0","_shasum":"8376873f7d2335179ffb1e6fc3a8ed0dfc8ab559","_from":".","_npmVersion":"4.1.2","_nodeVersion":"7.5.0","_npmUser":{"name":"anonymous","email":"github@sellside.com"},"maintainers":[{"name":"anonymous","email":"github@sellside.com"}],"dist":{"shasum":"8376873f7d2335179ffb1e6fc3a8ed0dfc8ab559","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/unset-value/-/unset-value-1.0.0.tgz","integrity":"sha512-PcA2tsuGSF9cnySLHTLSh2qrQiJ70mn+r+Glzxv2TWZblxsxCC52BDlZoPCsz7STd9pN7EZetkWZBAvk4cgZdQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDTbSBaRta4d1dqFdopufagQH7xpoSwENiGGCb/CJinGwIgWxixa1t9JgOWluoSLKftFBjs6BWTCekcehxVx8lJ4tU="}]},"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/unset-value-1.0.0.tgz_1488061635259_0.42952891532331705"},"directories":{}},"2.0.0":{"name":"unset-value","description":"Delete nested properties from an object using dot notation.","version":"2.0.0","homepage":"https://github.com/jonschlinkert/unset-value","author":{"name":"Jon Schlinkert","url":"https://github.com/jonschlinkert"},"contributors":[{"email":"wtgtybhertgeghgtwtg@gmail.com","url":"https://github.com/wtgtybhertgeghgtwtg"},{"name":"Jon Schlinkert","email":"jon.schlinkert@sellside.com","url":"http://twitter.com/jonschlinkert"}],"repository":{"type":"git","url":"git+https://github.com/jonschlinkert/unset-value.git"},"bugs":{"url":"https://github.com/jonschlinkert/unset-value/issues"},"license":"MIT","main":"index.js","types":"index.d.ts","engines":{"node":">=10"},"scripts":{"test":"mocha"},"dependencies":{"has-value":"^2.0.2","isobject":"^4.0.0"},"devDependencies":{"gulp-format-md":"^0.1.11","mocha":"*","should":"*"},"keywords":["del","delete","key","object","omit","prop","property","remove","unset","value"],"verb":{"related":{"list":["get-value","get-values","omit-value","put-value","set-value","union-value","upsert-value"]},"toc":false,"layout":"default","tasks":["readme"],"plugins":["gulp-format-md"],"lint":{"reflinks":true}},"gitHead":"856b97b72c377374f43349557b90fa6e5dd671a1","_id":"unset-value@2.0.0","_nodeVersion":"14.16.0","_npmVersion":"6.14.11","dist":{"integrity":"sha512-hhaWKXRLy35kYyMpl4FkmSfHGh5PLSE9QqE3jxqDBxhHiIm2+sZkisg69/IL6MIkTcMZ8mCR1PgOIZRuWlvhZg==","shasum":"97f65b60a86cdd40d7371d4c933ad27212ee3f9c","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/unset-value/-/unset-value-2.0.0.tgz","fileCount":5,"unpackedSize":9600,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgUyhKCRA9TVsSAnZWagAALQYP/jc6Z3lTB1G1MeYwjnau\nbtDoPW+dLwkqY5149wxit0iPmlBqYFb3IHoLOb4D8lkH2YP/89NgxKWABA5b\n8TmXK+NR9d5izDDw+CuDmtoD05gGhOfqR/7OOpnGwinlytgSGRKb0B/TR4V4\n0g4Wm3j+tBHE0/vDIMyXy0siOj3JlBlYWPTzDFFWEGyzeeCF1hh9WBu2AnSG\n+hA3cG2UEbNymU1Di4Kg0+wMOw01SJ9xwQXq/QNJYbInASiO7MJlu3T+77NB\nBvesUYDLz164Q7/lbCQGuvJOm3CMBT+3XMOnIS9Qx/zZuGgMaQUvfoINMS8G\nXNFYjWoRB24WhrITM17ml1w3jc3SUewV6Uhgdt89SUJgkp/tykoM6M19/quP\nmSwDLkHhh1uZmDkcvHfGv7rGjypAKMTFSaUoYskz5q5UHW72RviiiSoWz3sJ\nZS6ILDz/myF8B7KmyWC3ikMtjLXzK+saFmXurD3ARmvgeomA0OertD1YtUKo\nKTDRMwSVOEtRjipTs56onHxmgOt0oFsbnJEDFlhbm4upnX1PvYUIDUZxTtFP\nFVqH1fJ/tHfM7LzPzc0nfWXNcv8NOJ25RS8v2dS9yRqboF29eImhDkcOzt2/\nNwyzPUGfs+z4mNLiBEFoF2hXy6wensO81VCB0QwjISPOWEEfPwslZzVQ1Hl7\nXSv3\r\n=fwuW\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIEM7ka6ghRmPIUHbcOOfWkKvKmCs/ycoKMAD3gGwSSBQAiEAw7CUv8KadHrYYyMnPjjh/74btOmaa1q9lblFqI7HpGg="}]},"_npmUser":{"name":"anonymous","email":"daniel@tschinder.de"},"directories":{},"maintainers":[{"name":"anonymous","email":"github@sellside.com"},{"name":"anonymous","email":"daniel@tschinder.de"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/unset-value_2.0.0_1616062538379_0.3028235666357879"},"_hasShrinkwrap":false},"2.0.1":{"name":"unset-value","description":"Delete nested properties from an object using dot notation.","version":"2.0.1","homepage":"https://github.com/jonschlinkert/unset-value","author":{"name":"Jon Schlinkert","url":"https://github.com/jonschlinkert"},"contributors":[{"email":"wtgtybhertgeghgtwtg@gmail.com","url":"https://github.com/wtgtybhertgeghgtwtg"},{"name":"Jon Schlinkert","email":"jon.schlinkert@sellside.com","url":"http://twitter.com/jonschlinkert"}],"repository":{"type":"git","url":"git+https://github.com/jonschlinkert/unset-value.git"},"bugs":{"url":"https://github.com/jonschlinkert/unset-value/issues"},"license":"MIT","main":"index.js","types":"index.d.ts","engines":{"node":">=10"},"scripts":{"test":"mocha"},"dependencies":{"has-value":"^2.0.2","isobject":"^4.0.0"},"devDependencies":{"gulp-format-md":"^0.1.11","mocha":"*","should":"*"},"keywords":["del","delete","key","object","omit","prop","property","remove","unset","value"],"verb":{"related":{"list":["get-value","get-values","omit-value","put-value","set-value","union-value","upsert-value"]},"toc":false,"layout":"default","tasks":["readme"],"plugins":["gulp-format-md"],"lint":{"reflinks":true}},"gitHead":"3f61f4fc28bd40252c0e86f1bfab0a27a347e9f9","_id":"unset-value@2.0.1","_nodeVersion":"14.17.5","_npmVersion":"6.14.14","dist":{"integrity":"sha512-2hvrBfjUE00PkqN+q0XP6yRAOGrR06uSiUoIQGZkc7GxvQ9H7v8quUPNtZjMg4uux69i8HWpIjLPUKwCuRGyNg==","shasum":"57bed0c22d26f28d69acde5df9a11b77c74d2df3","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/unset-value/-/unset-value-2.0.1.tgz","fileCount":5,"unpackedSize":9881,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJiBlWKCRA9TVsSAnZWagAAxdMP/09iq+AasFxk0TLMTzS+\nIhDxxmQKVrhR9juV50hyTDd7Ds9GIAD66wHdrCxpaKd9zq+JETu5/5/cX9tP\nE+lgj1+cWFzwzUMWgaGWJmThBx728QBW0/SGNMg0/ZUIqhBtgUpsxf2VqM9A\nbuidtyFqPqpuwvOB8gJdH0sCvjv3zvAWIywNidCvt8Ph/Rapl+tLpELrHjbm\nVdRw1eFZnLqHCQYHlDw52XTOMXJPHmzW9Q3N0lqRju0dgVSFPvTp9KNGGEQ4\nm+K09b13aJ8+EZTunVy6Ma0eFquCj2xCygniiy1n10UAxg8SaJ1zqjX+jawo\nC9EvwF2pCnVJ6kprEFRgSBwN6p4c0hvdnX4zkoTommhzDYlxkQwBeAxiFS3m\nYs/zKill8D3U4UW96GyCg9T5XLfYlYB3jpfF3II52IUUDaTk57Wg3YXvW1jx\nriZMLvcWt+w25ZbMfbeDdQHv2lOGQFDiwX4vZ5Akh0R9hHCdRcBLJDN+GfbI\n+e83rPBG2dUu5gKyjs8PD4HwFytnZfgvYrbp7+8QCCpEfte0O97i028S1Fd6\nCqpywkm6aFclxxIQGVn63j+w8Bfu4UR69rYycjg0EJKmbp5xAu8OKuSsJqp1\n19WwiOxAbh7y1B+9EmSkdeL48ZNqMGuf68MRE5WqI4HtD7CsAtI3l2bfAU4I\nXEUE\r\n=IiuR\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCgn2VVv59v/NnlPlfKKyDu7a3qimOwGn7UozKh7u7O2AIgRoH01nlK9gh/UCtsbzuM/5AABzzu0R6mHqqvsdGe9Ug="}]},"_npmUser":{"name":"anonymous","email":"npm@tschinder.de"},"directories":{},"maintainers":[{"name":"anonymous","email":"github@sellside.com"},{"name":"anonymous","email":"npm@tschinder.de"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/unset-value_2.0.1_1644582282138_0.7628599866361732"},"_hasShrinkwrap":false}},"name":"unset-value","time":{"modified":"2022-06-28T05:18:36.084Z","created":"2015-08-27T07:59:45.273Z","0.1.0":"2015-08-27T07:59:45.273Z","0.1.1":"2015-10-30T19:55:39.243Z","0.1.2":"2017-02-25T22:26:57.734Z","1.0.0":"2017-02-25T22:27:15.940Z","2.0.0":"2021-03-18T10:15:38.516Z","2.0.1":"2022-02-11T12:24:42.276Z"},"readmeFilename":"README.md","contributors":[{"email":"wtgtybhertgeghgtwtg@gmail.com","url":"https://github.com/wtgtybhertgeghgtwtg"},{"name":"Jon Schlinkert","email":"jon.schlinkert@sellside.com","url":"http://twitter.com/jonschlinkert"}],"homepage":"https://github.com/jonschlinkert/unset-value"}