This package has been deprecated
Author message:
Superseded by 6to5, it's great! https://6to5.org/
node6
1.0.0 • Public • Published node6
hacking all the transpilers and polyfills together to transparently support much es6 in node
CLI
> node6 -e "{let test = function *() {yield 3; yield 4}; let t = test(); console.log(t.next().value, t.next().value);}"
3 4
MODULE
let test = function *() {yield 3; yield 4};
module.exports = test()
require('node6')(__dirname)
var t = require('./mymodule')
console.log(t.next().value)
console.log(t.next().value)
Readme
Keywords
nonePackage Sidebar
Install
Weekly Downloads