{"id":16642001,"url":"https://github.com/make-github-pseudonymous-again/js-dict","last_synced_at":"2026-05-20T16:38:44.214Z","repository":{"id":23255908,"uuid":"26614057","full_name":"make-github-pseudonymous-again/js-dict","owner":"make-github-pseudonymous-again","description":"dictionary ADT code bricks for JavaScript","archived":false,"fork":false,"pushed_at":"2021-04-26T14:08:55.000Z","size":96,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-03-10T18:12:44.809Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"http://aureooms.github.io/js-dict/","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"agpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/make-github-pseudonymous-again.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2014-11-14T00:06:40.000Z","updated_at":"2021-12-20T23:41:01.000Z","dependencies_parsed_at":"2022-08-25T22:30:52.392Z","dependency_job_id":null,"html_url":"https://github.com/make-github-pseudonymous-again/js-dict","commit_stats":null,"previous_names":["aureooms/js-dict"],"tags_count":6,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/make-github-pseudonymous-again%2Fjs-dict","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/make-github-pseudonymous-again%2Fjs-dict/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/make-github-pseudonymous-again%2Fjs-dict/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/make-github-pseudonymous-again%2Fjs-dict/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/make-github-pseudonymous-again","download_url":"https://codeload.github.com/make-github-pseudonymous-again/js-dict/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":243165134,"owners_count":20246720,"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-12T07:48:34.521Z","updated_at":"2025-12-11T19:12:13.714Z","avatar_url":"https://github.com/make-github-pseudonymous-again.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"[js-dict](http://make-github-pseudonymous-again.github.io/js-dict)\n==\n\nDictionary ADT code bricks for JavaScript. Parent is\n[aureooms/js-data-structures](https://github.com/make-github-pseudonymous-again/js-data-structures).\n\n[![License](https://img.shields.io/github/license/make-github-pseudonymous-again/js-dict.svg?style=flat)](https://raw.githubusercontent.com/make-github-pseudonymous-again/js-dict/master/LICENSE)\n[![NPM version](https://img.shields.io/npm/v/@aureooms/js-dict.svg?style=flat)](https://www.npmjs.org/package/@aureooms/js-dict)\n[![Bower version](https://img.shields.io/bower/v/@aureooms/js-dict.svg?style=flat)](http://bower.io/search/?q=@aureooms/js-dict)\n[![Build Status](https://img.shields.io/travis/make-github-pseudonymous-again/js-dict.svg?style=flat)](https://travis-ci.org/make-github-pseudonymous-again/js-dict)\n[![Coverage Status](https://img.shields.io/coveralls/make-github-pseudonymous-again/js-dict.svg?style=flat)](https://coveralls.io/r/make-github-pseudonymous-again/js-dict)\n[![Dependencies Status](https://img.shields.io/david/make-github-pseudonymous-again/js-dict.svg?style=flat)](https://david-dm.org/make-github-pseudonymous-again/js-dict#info=dependencies)\n[![devDependencies Status](https://img.shields.io/david/dev/make-github-pseudonymous-again/js-dict.svg?style=flat)](https://david-dm.org/make-github-pseudonymous-again/js-dict#info=devDependencies)\n[![Code Climate](https://img.shields.io/codeclimate/github/make-github-pseudonymous-again/js-dict.svg?style=flat)](https://codeclimate.com/github/make-github-pseudonymous-again/js-dict)\n[![NPM downloads per month](https://img.shields.io/npm/dm/@aureooms/js-dict.svg?style=flat)](https://www.npmjs.org/package/@aureooms/js-dict)\n[![GitHub issues](https://img.shields.io/github/issues/make-github-pseudonymous-again/js-dict.svg?style=flat)](https://github.com/make-github-pseudonymous-again/js-dict/issues)\n[![Inline docs](http://inch-ci.org/github/make-github-pseudonymous-again/js-dict.svg?branch=master\u0026style=shields)](http://inch-ci.org/github/make-github-pseudonymous-again/js-dict)\n\nCan be managed through [duo](https://github.com/duojs/duo),\n[component](https://github.com/componentjs/component),\n[bower](https://github.com/bower/bower), or\n[npm](https://github.com/npm/npm).\n\n```js\nlet dict = require( \"@aureooms/js-dict\" ) ;\n```\n\n## Use\n\n```js\nlet buddies = new dict.Dict( { } ) ;\nbuddies.length ; // 0\n\nbuddies.set( \"Camus\" , \"Albert\" ) ;\nbuddies.length ; // 1\n\nbuddies.set( \"Lorenz\" , \"Konrad\" ) ;\nbuddies.length ; // 2\n\nbuddies.get( \"Camus\" ) ; // \"Albert\"\nbuddies.get( \"Lorenz\" ) ; // \"Konrad\"\nbuddies.getdefault( \"Lovecraft\" , \"Cthulhu\" ) ; // \"Cthulhu\"\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmake-github-pseudonymous-again%2Fjs-dict","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmake-github-pseudonymous-again%2Fjs-dict","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmake-github-pseudonymous-again%2Fjs-dict/lists"}