https://github.com/johnlouderback/xtnd
XTND lets you safely extend built-in JS prototypes using namespaces.
https://github.com/johnlouderback/xtnd
Last synced: 3 months 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 (over 10 years ago)
- Default Branch: master
- Last Pushed: 2015-02-27T07:13:08.000Z (over 10 years ago)
- Last Synced: 2025-02-08T06:42:47.926Z (5 months 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]
```