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

https://github.com/pavi2410/xtend

Extend JS standard library with xtend
https://github.com/pavi2410/xtend

deno deno-module javascript javascript-library js js-library stdlib

Last synced: 7 months ago
JSON representation

Extend JS standard library with xtend

Awesome Lists containing this project

README

          

## xtend

Extend JS standard library with xtend

[![Deno](https://github.com/pavi2410/xtend/actions/workflows/deno.yml/badge.svg)](https://github.com/pavi2410/xtend/actions/workflows/deno.yml)

## Usage

- xtend all modules
```js
import "https://deno.land/x/xtend@v0.2.0/index.js";
```

- xtend single module
```js
import "https://deno.land/x/xtend@v0.2.0/src/array.js";
```

## xtended modules

- Array
- sum - returns the sum of all the values in array
- uniq - returns an array of unique values
- first - returns the first element in the array
- last - returns the last element in the array