{"id":20145747,"url":"https://github.com/obsius/quick-seek","last_synced_at":"2025-03-03T00:13:59.796Z","repository":{"id":137407964,"uuid":"237566492","full_name":"obsius/quick-seek","owner":"obsius","description":"Resolve to an object property.","archived":false,"fork":false,"pushed_at":"2021-01-19T23:23:12.000Z","size":6,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-02-18T07:37:47.707Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/obsius.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2020-02-01T05:20:26.000Z","updated_at":"2021-01-19T23:23:15.000Z","dependencies_parsed_at":"2023-05-29T04:00:33.810Z","dependency_job_id":null,"html_url":"https://github.com/obsius/quick-seek","commit_stats":{"total_commits":9,"total_committers":1,"mean_commits":9.0,"dds":0.0,"last_synced_commit":"0bf1397959d53ac0a440d72a3905f27a98035099"},"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/obsius%2Fquick-seek","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/obsius%2Fquick-seek/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/obsius%2Fquick-seek/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/obsius%2Fquick-seek/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/obsius","download_url":"https://codeload.github.com/obsius/quick-seek/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":241304299,"owners_count":19941099,"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-11-13T22:18:00.327Z","updated_at":"2025-03-03T00:13:59.778Z","avatar_url":"https://github.com/obsius.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Quick Seek\n\nQuick object property resolution. Seek path supports string, array, or number.\nNo type of property checks.\n\n## Example\n\n```js\n\nimport seek from 'quick-seek';\n\nlet x = {\n\ty: {\n\t\tz: 20\n\t},\n\tyy: [1, 2]\n};\n\nconsole.log(get(x, 'y')); // returns y: { z: 20 }\n\nconsole.log(set(x, 'key', 'value')); // x.key = value | returns x\n\nconsole.log(get(x, 'y.z')); // returns 20\n\nconsole.log(set(x, ['y', 'z'], true)); // x.y.z = true | returns x.y\n\nconsole.log(get(x, 'yy.0')); // returns 1\n\nconsole.log(get(x, ['yy', '1'])); // returns 2\n\nconsole.log(set(x, 'y.yy.yyy', 'z')); // x.y.yy.yyy = z (will populate empty objects) | returns y.yy.yyy\n\n```\n\n## Contributing\nFeel free to make changes and submit pull requests whenever.\n\n## License\nQuick Seek uses the [MIT](https://opensource.org/licenses/MIT) license.","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fobsius%2Fquick-seek","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fobsius%2Fquick-seek","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fobsius%2Fquick-seek/lists"}