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
- Host: GitHub
- URL: https://github.com/pavi2410/xtend
- Owner: pavi2410
- Created: 2021-07-20T10:33:06.000Z (about 4 years ago)
- Default Branch: main
- Last Pushed: 2021-07-22T07:44:57.000Z (about 4 years ago)
- Last Synced: 2025-02-28T13:21:54.603Z (7 months ago)
- Topics: deno, deno-module, javascript, javascript-library, js, js-library, stdlib
- Language: JavaScript
- Homepage: https://deno.land/x/xtend
- Size: 11.7 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## xtend
Extend JS standard library with xtend
[](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