7.12.305 • Published 3 years ago

babel-plugin-transform-brasa v7.12.305

Weekly downloads
16
License
-
Repository
-
Last release
3 years ago

babel-plugin-transform-brasa

A plugin that transpiles brasa to javascript. Currently this is just a proof of concept.

brasa is just a version of javascript where the keywords are in portuguese, nothing else. So for example, the following js code:

function soma (a, b) {
  return a + b;
}

Would be:

função soma (a, b) {
  retorne a + b;
}