Package Exports
- es2040
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (es2040) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
es2040 
browserify
transform that compiles a selection of ES6 features to valid ES5:
fat arrows
- make inline functions cute-lookingtemplate strings
/tagged templates
- enable DSLs inside of JSconst
- usingconst
by default makes it easy to spot where values are being redeclaredobject destructuring
-const { a, b } = { a: 1, b: 2 }
array destructuring
-const [a, b] = [1, 2]
default parameters
-({ a = 1, b = 2 } = {}) => a
rest parameters
-(a, b, ...args) => {}
spread literals
-f(a, b, ...args)
short-hand properties
-return { a, b }
computed properties
-return { [a]: b }
Because, in hindsight, we can do without most of ES6.
Forked from es2020
for those of us with slightly worse vision.
Usage
Via package.json
(recommended):
{
"browserify": {
"transform": [
"es2040"
]
}
}
Via CLI:
$ browserify client.js -t es2040
Via Node API:
const browserify = require('browserify')
browserify('./client.js')
.transform('es2040')
.bundle()
.pipe(process.stdout)
FAQ
Is this a joke?
Not really. The TC39 does not represent my interests, and the features they introduce are not useful for the stuff I'm doing. I'm bloody serious. A few good things have been introduced, so that's what we're backporting to older browsers.
Can you not?
If the TC39 had an open standards process perhaps this wasn't needed. But as it stands they're an unwelcoming club, so I get to poke fun at this situation that otherwise fills me with sadness. Feel free to poke fun at me too. Or if you're angry that someone would make fun of the hard work the TC39 has done, feel free to ignore this project. Do whatever, I'm doing the same.
Can you include feature X?
Maybe. Open an issue, make a case and we can discuss it. Just remember that this project is not democratically governed.
Installation
$ npm install es2040