{"id":32119274,"url":"https://github.com/thesmart/nodash","last_synced_at":"2026-05-14T20:02:03.791Z","repository":{"id":62421988,"uuid":"348438483","full_name":"thesmart/nodash","owner":"thesmart","description":"A partial port of lodash and test suit to TypeScript for the Deno JavaScript runtime.","archived":false,"fork":false,"pushed_at":"2021-03-18T23:37:32.000Z","size":117,"stargazers_count":3,"open_issues_count":0,"forks_count":1,"subscribers_count":1,"default_branch":"main","last_synced_at":"2026-03-31T09:52:16.667Z","etag":null,"topics":["deno","nodash","underscore"],"latest_commit_sha":null,"homepage":"","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"other","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/thesmart.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":"2021-03-16T17:38:55.000Z","updated_at":"2022-03-21T10:54:38.000Z","dependencies_parsed_at":"2022-11-01T17:32:13.982Z","dependency_job_id":null,"html_url":"https://github.com/thesmart/nodash","commit_stats":null,"previous_names":[],"tags_count":4,"template":false,"template_full_name":null,"purl":"pkg:github/thesmart/nodash","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/thesmart%2Fnodash","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/thesmart%2Fnodash/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/thesmart%2Fnodash/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/thesmart%2Fnodash/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/thesmart","download_url":"https://codeload.github.com/thesmart/nodash/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/thesmart%2Fnodash/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":33041204,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-13T13:14:54.681Z","status":"online","status_checked_at":"2026-05-14T02:00:06.663Z","response_time":57,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"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":["deno","nodash","underscore"],"created_at":"2025-10-20T18:00:58.257Z","updated_at":"2026-05-14T20:02:03.786Z","avatar_url":"https://github.com/thesmart.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# nodash\n\nA partial port of [`lodash`](https://lodash.com/) and test suit to TypeScript\nfor the Deno JavaScript runtime.\n\n**Project goals:**\n\n- have the most identical port of `lodash` implementation (line-by-line)\n- have the most identical test suite (line-by-line) of `lodash`\n- not a complete `lodash` port: only the parts needed in ECMA 6\n- fully typed in TypeScript and passes `deno lint`\n- can import individual functions (`_` symbol is optional, i.e. \"nodash\")\n- each release tag of `nodash` will reference a `lodash` release tag\n\n**Changes from Lodash**\n\n- many public functions have been excluded if an equivalent ECMA 6 feature\n  exists\n- `get`, `has`, etc. no longer take `path: Array\u003cstring|symbol\u003e`, only\n  `path: string`\n- private function `_caseFirst` has a different signature\n\n## Usage\n\nFor the bold:\n\n```js\nimport {\n  isEmpty,\n  isNull,\n  isUndefined,\n} from \"https://deno.land/x/nodash/src/mod.ts\";\n```\n\nFor the familiar:\n\n```js\nimport * as _ from \"https://deno.land/x/nodash/src/mod.ts\";\n```\n\n## Project status:\n\n- [x] Partial **Lang** port of all \"is\" functions (e.g. `isString`, `isEmpty`,\n  etc.)\n- [x] Partial **Lang** port of \"to\" functions:\n  - [x] `toFinite`\n  - [x] `toInteger`\n  - [x] `toNumber`\n  - [x] `toSafeInteger`\n  - [x] `toString`\n- [x] **Function**\n  - [x] `debounce`\n  - [x] `throttle`\n- [ ] **Object**\n  - [x] `get`\n  - [x] `has`\n  - [ ] `set`\n  - [ ] `unset`\n- [x] **String**\n  - [x] `deburr`\n  - [x] `camelCase`\n  - [x] `capitalize`\n  - [x] `kebabCase`\n  - [x] `lowerCase`\n  - [x] `snakeCase`\n  - [x] `startCase`\n  - [x] `upperCase`\n  - [x] `words`\n\n## Contributions\n\n✨💎✨ Contributions are welcome. ✨💎✨\n\nFor additional ports, please:\n\n1. open an issue w/ proposal\n2. open a PR w/ code contribution (linked to issue)\n3. include all relevant tests from lodash (ported)\n4. pass `deno lint` and run `deno fmt`\n\n## nodash-cli\n\nTo update the `mod.ts` file:\n\n```shell\n# scans all ./src/**/*.ts files for exported functions w/ @export jsdoc tags\n./nodash-cli --update-mod\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fthesmart%2Fnodash","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fthesmart%2Fnodash","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fthesmart%2Fnodash/lists"}