1.0.6 • Published 2 years ago

@jswork/protofill v1.0.6

Weekly downloads
-
License
MIT
Repository
-
Last release
2 years ago

protofill

Enhance native JavaScript prototypes with custom methods safely.

version license size download

installation

npm install @jswork/protofill

# add types for `src/global.d.ts`
import '@jswork/protofill/dist/types';

usage

// just oneline
import '@jswork/protofill'

// ------ Array ---- 
// const arr = [1,2,3]
// set first: arr.first = 'a';
// get first: arr.first;

// set last: arr.last = 'a';
// get last: arr.last;


// ------ Date ----
// const date = new Date();
// format: date.format('YYYY-MM-DD HH:mm:ss');

license

Code released under the MIT license.

1.0.6

2 years ago

1.0.5

2 years ago

1.0.4

2 years ago

1.0.3

2 years ago

1.0.2

2 years ago

1.0.1

2 years ago