Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/johnlouderback/xtnd
XTND lets you safely extend built-in JS prototypes using namespaces.
https://github.com/johnlouderback/xtnd
Last synced: 25 days ago
JSON representation
XTND lets you safely extend built-in JS prototypes using namespaces.
- Host: GitHub
- URL: https://github.com/johnlouderback/xtnd
- Owner: JohnLouderback
- License: mit
- Created: 2015-02-27T06:18:17.000Z (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2015-02-27T07:13:08.000Z (almost 10 years ago)
- Last Synced: 2023-08-20T18:39:45.655Z (over 1 year ago)
- Language: JavaScript
- Size: 148 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
#What Is XTND?
XTND is a 2.8KB (1KB gzipped) library for JavaScript. You can use it to safely extend built-in JS prototypes using namespaces.```javascript
var arr = [
[1,2],
[3,4]
]
var newArr = arr.xtnd().joinChildArrays();//newArr === [1,2,3,4]
```