- Notifications
You must be signed in to change notification settings - Fork65
License
NotificationsYou must be signed in to change notification settings
bublejs/buble
Folders and files
Name | Name | Last commit message | Last commit date | |
---|---|---|---|---|
Repository files navigation
Bublé was created when ES2015 was still the future. Nowadays, all modern browsers support all of ES2015 and (in some cases) beyond. Unless you need to support IE11, you probably don't need to use Bublé to convert your code to ES5.
Since IE11 is an unfortunate reality for some people, we will continue to release bugfixes, but new features won't be added unless in exceptional circumstances.
- Try it out atbuble.surge.sh
- Read the docs atbuble.surge.sh/guide
Via the command line...
npm install -g bublebuble input.js> output.js
...or via the JavaScript API:
varbuble=require('buble');varresult=buble.transform(source);// { code: ..., map: ... }
MIT