{"id":15365660,"url":"https://github.com/tunnckocore/put-value","last_synced_at":"2025-04-15T09:52:52.090Z","repository":{"id":34189025,"uuid":"38042049","full_name":"tunnckoCore/put-value","owner":"tunnckoCore","description":"Update only existing values from an object, works with dot notation paths like `a.b.c` and support deep nesting.","archived":false,"fork":false,"pushed_at":"2020-07-10T00:33:29.000Z","size":9,"stargazers_count":5,"open_issues_count":4,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-04-08T07:42:55.081Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"http://j.mp/1QRoBEf","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/tunnckoCore.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE.md","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2015-06-25T10:03:42.000Z","updated_at":"2024-07-23T02:08:54.000Z","dependencies_parsed_at":"2022-09-01T09:11:52.465Z","dependency_job_id":null,"html_url":"https://github.com/tunnckoCore/put-value","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tunnckoCore%2Fput-value","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tunnckoCore%2Fput-value/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tunnckoCore%2Fput-value/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tunnckoCore%2Fput-value/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/tunnckoCore","download_url":"https://codeload.github.com/tunnckoCore/put-value/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":249048713,"owners_count":21204305,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-10-01T13:15:27.491Z","updated_at":"2025-04-15T09:52:52.073Z","avatar_url":"https://github.com/tunnckoCore.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# put-value [![npmjs.com][npmjs-img]][npmjs-url] [![The MIT License][license-img]][license-url] \n\n\u003e Update only existing values from an object, works with dot notation paths like `a.b.c` and support deep nesting.\n\n[![code climate][codeclimate-img]][codeclimate-url] [![standard code style][standard-img]][standard-url] [![travis build status][travis-img]][travis-url] [![coverage status][coveralls-img]][coveralls-url] [![dependency status][david-img]][david-url]\n\n\n## Features\n- updates value of `key` only if `key` exists\n- updates only existing values of `obj` when object is given to `key`\n- because `set-value` **update** values if exist and **add** if not exist\n- returns original object if `key` is not an object or string\n- returns empty object if `obj` is not an object\n- returns modified object otherwise\n\n\n## Install\n```\nnpm i put-value --save\nnpm test\n```\n\n\n## Usage\n\u003e For more use-cases see the [tests](./test.js)\n\n```js\nvar put = require('put-value')\nvar obj = {\n  a: {\n    foo: 'bar'\n  },\n  b: {\n    bb: 'bbb'\n  }\n}\n\nput(123) //=\u003e empty object {}\nput(obj, {a: {bar: 'baz'}}) //=\u003e original `obj`\nput(obj, {a: 'foo'}})\n//=\u003e {\n//   a: 'foo',\n//   b: {\n//     bb: 'bbb'\n//   }\n// }\n\nput(obj, {zzz: 'xxx'}) //=\u003e original `obj`\nput(obj, 'foo', 'baz') //=\u003e original `obj`\nput(obj, 'foo.bar', 'baz') //=\u003e original `obj`\nput(obj, 'a', {foo: 123})\n//=\u003e {\n//   a: {\n//     foo: 123\n//   },\n//   b: {\n//     bb: 'bbb'\n//   }\n// }\n\nput(obj, 'a.foo', {baz: 'aaa'})\n//=\u003e {\n//   a: {\n//     foo: {\n//       baz: 'aaa'\n//     }\n//   },\n//   b: {\n//     bb: 'bbb'\n//   }\n// }\n```\n\n\n## Contributing\n\nPull requests and stars are always welcome. For bugs and feature requests, [please create an issue](https://github.com/tunnckoCore/put-value/issues/new).  \nBut before doing anything, please read the [CONTRIBUTING.md](./CONTRIBUTING.md) guidelines.\n\n\n## [Charlike Make Reagent](http://j.mp/1stW47C) [![new message to charlike][new-message-img]][new-message-url] [![freenode #charlike][freenode-img]][freenode-url]\n\n[![tunnckocore.tk][author-www-img]][author-www-url] [![keybase tunnckocore][keybase-img]][keybase-url] [![tunnckoCore npm][author-npm-img]][author-npm-url] [![tunnckoCore twitter][author-twitter-img]][author-twitter-url] [![tunnckoCore github][author-github-img]][author-github-url]\n\n\n[npmjs-url]: https://www.npmjs.com/package/put-value\n[npmjs-img]: https://img.shields.io/npm/v/put-value.svg?label=put-value\n\n[license-url]: https://github.com/tunnckoCore/put-value/blob/master/LICENSE.md\n[license-img]: https://img.shields.io/badge/license-MIT-blue.svg\n\n\n[codeclimate-url]: https://codeclimate.com/github/tunnckoCore/put-value\n[codeclimate-img]: https://img.shields.io/codeclimate/github/tunnckoCore/put-value.svg\n\n[travis-url]: https://travis-ci.org/tunnckoCore/put-value\n[travis-img]: https://img.shields.io/travis/tunnckoCore/put-value.svg\n\n[coveralls-url]: https://coveralls.io/r/tunnckoCore/put-value\n[coveralls-img]: https://img.shields.io/coveralls/tunnckoCore/put-value.svg\n\n[david-url]: https://david-dm.org/tunnckoCore/put-value\n[david-img]: https://img.shields.io/david/tunnckoCore/put-value.svg\n\n[standard-url]: https://github.com/feross/standard\n[standard-img]: https://img.shields.io/badge/code%20style-standard-brightgreen.svg\n\n\n[author-www-url]: http://www.tunnckocore.tk\n[author-www-img]: https://img.shields.io/badge/www-tunnckocore.tk-fe7d37.svg\n\n[keybase-url]: https://keybase.io/tunnckocore\n[keybase-img]: https://img.shields.io/badge/keybase-tunnckocore-8a7967.svg\n\n[author-npm-url]: https://www.npmjs.com/~tunnckocore\n[author-npm-img]: https://img.shields.io/badge/npm-~tunnckocore-cb3837.svg\n\n[author-twitter-url]: https://twitter.com/tunnckoCore\n[author-twitter-img]: https://img.shields.io/badge/twitter-@tunnckoCore-55acee.svg\n\n[author-github-url]: https://github.com/tunnckoCore\n[author-github-img]: https://img.shields.io/badge/github-@tunnckoCore-4183c4.svg\n\n[freenode-url]: http://webchat.freenode.net/?channels=charlike\n[freenode-img]: https://img.shields.io/badge/freenode-%23charlike-5654a4.svg\n\n[new-message-url]: https://github.com/tunnckoCore/messages\n[new-message-img]: https://img.shields.io/badge/send%20me-message-green.svg\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftunnckocore%2Fput-value","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ftunnckocore%2Fput-value","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftunnckocore%2Fput-value/lists"}