care-js-bundle
Donation ETH 0x8F36c9066435c52053bf4447Cbd837e14ABaf403
Modular standard library for JavaScript. Includes polyfills for ECMAScript up to 2019: promises, symbols, collections, iterators, typed arrays, many other features, ECMAScript proposals, some cross-platform WHATWG / W3C features and proposals like
URL
. You can load only required features or use it without global namespace pollution.
; // <- at the top of your entry point Array; // => [1, 2, 3]1 2 3 4 5; // => [1, 2, 3, 4, 5]Promise; // => 32
You can load only required features:
; // <- at the top of your entry point; // <- at the top of your entry point; // <- at the top of your entry point; // <- at the top of your entry point Array; // => [1, 2, 3]1 2 3 4 5; // => [1, 2, 3, 4, 5]Promise; // => 32
Or use it without global namespace pollution:
;;;; ; // => [1, 2, 3]; // => [1, 2, 3, 4, 5]Promise; // => 32
It's a bundled global version, for more info see care-js
documentation.