You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This is a mini transpiler. It converts ES6 Class and its methods to ES5 Constructor Function with Prototype. Parses to AST from the string code, Transforms and Generates...
It is a tiny example of Babel ES6 to ES5 converter.
Parses the code and converts to ast
Transforming the code in AST data structure
Generates codes from transformed AST
Dependencies
Babylon
Babel-traverse
Babel-Generator
About
This is a mini transpiler. It converts ES6 Class and its methods to ES5 Constructor Function with Prototype. Parses to AST from the string code, Transforms and Generates...