0.1.5 • Published 5 years ago

labiba-transformer v0.1.5

Weekly downloads
16
License
MIT
Repository
github
Last release
5 years ago

Labiba Transformer

Transform Labiba Syntax into JavaScript

For working IDE see our repository: labiba

Example:

const labiba = require('labiba-transformer')

let labibaCode =`
//Comment
متغير سامح = 1;
مهمة مثل() {
    ارجاع 'مرحبا';
}

مثل()
`
let code = labiba.transform(labibaCode);

console.log(code)

------------
output:
//Comment

var سامح = 1;

function مثل() {
  return 'مرحبا';
}

مثل();

repl.it

https://repl.it/@SamehFakoua/Labiba-Transformer-Example

Install

Using npm:

npm install labiba-transformer --save-dev

or using yarn:

yarn add labiba-transformer --dev

Build

yarn install
yarn build
0.1.5

5 years ago

0.1.4

5 years ago

0.1.3

6 years ago

0.1.2

6 years ago

0.1.1

6 years ago

0.1.0

6 years ago

0.0.9

6 years ago

0.0.8

6 years ago

0.0.7

6 years ago

0.0.6

6 years ago

0.0.5

6 years ago

0.0.3

6 years ago

0.0.2

6 years ago

0.0.1

6 years ago

0.0.0

6 years ago