https://github.com/michael-spengler/deno-lodash
Provides lodash for Deno
https://github.com/michael-spengler/deno-lodash
lodash
Last synced: 3 months ago
JSON representation
Provides lodash for Deno
- Host: GitHub
- URL: https://github.com/michael-spengler/deno-lodash
- Owner: michael-spengler
- Created: 2020-09-13T11:25:43.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2020-09-13T13:43:13.000Z (almost 5 years ago)
- Last Synced: 2025-04-10T01:05:39.951Z (3 months ago)
- Topics: lodash
- Language: TypeScript
- Homepage:
- Size: 458 KB
- Stars: 6
- Watchers: 3
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
[](https://nest.land/package/deno-lodash)
# Lodash
## Usage Example
```ts
import { ld } from 'https://x.nest.land/[email protected]/mod.ts';
let words = ['sky', 'wood', 'forest', 'falcon',
'pear', 'ocean', 'universe'];let fel = ld.first(words);
let lel = ld.last(words);console.log(`First element: ${fel}`);
console.log(`Last element: ${lel}`);```
## Trigger Usage Example
```sh
deno run --allow-read --unstable --allow-env https://x.nest.land/[email protected]/usage-example.ts
```
## Trigger Test Execution
```sh
deno test --allow-read --unstable --allow-env https://x.nest.land/[email protected]/test.ts
```