Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/michael-spengler/deno-lodash

Provides lodash for Deno
https://github.com/michael-spengler/deno-lodash

lodash

Last synced: 26 days ago
JSON representation

Provides lodash for Deno

Awesome Lists containing this project

README

        

[![nest badge](https://nest.land/badge.svg)](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

```