Skip to content

Latest commit

 

History

History
22 lines (11 loc) · 379 Bytes

README.md

File metadata and controls

22 lines (11 loc) · 379 Bytes

babelCompiler

Run directly

a ) npm install git://github.com/appcoreopc/babelCompiler.git

If you unable to invoke, hsc (helloscript compiler), please try to clone this repository and run "npm link".

Ideally, you should be able to run

hsc dummycode.js

And will generate the following output :-

original code:- let a = 2 + 2;

transformed code:- let total = 2 + 2;