0.1.5 • Published 3 years ago

labiba-transformer v0.1.5

Weekly downloads
16
License
MIT
Repository
github
Last release
3 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

3 years ago

0.1.4

3 years ago

0.1.3

5 years ago

0.1.2

5 years ago

0.1.1

5 years ago

0.1.0

5 years ago

0.0.9

5 years ago

0.0.8

5 years ago

0.0.7

5 years ago

0.0.6

5 years ago

0.0.5

5 years ago

0.0.3

5 years ago

0.0.2

5 years ago

0.0.1

5 years ago

0.0.0

5 years ago