0.0.6 • Published 8 months ago

filipino-script-translator v0.0.6

Weekly downloads
-
License
MIT
Repository
github
Last release
8 months ago

filipino-script-translator

Translate given text into Baybayin, Buhid, Hanunoo, or Tagbanwa scripts.

js-standard-style npm version codecov

Demonstration

Deploy with Vercel

Installation

npm install filipino-script-translator

Usage

Import the translate() and the enum from the package. Change the script parameter into one of the enums, the default is BAYBAYIN:

import { Script, translate } from 'filipino-script-translator';

const result = translate('maganda', Script.BAYBAYIN);
// Output: ᜋᜄᜈ᜔ᜇ

const result = translate('maganda', Script.TAGBANWA);
// Output: ᝫᝤᝧ

const result = translate('maganda', Script.HANUNOO);
// Output: ᜫᜤᜨ᜴ᜧ

const result = translate('maganda', Script.BUHID);
// Output: ᝋᝄnᝇ

or directly use the translator methods base on the script you want:

import { toBaybayin, toBuhid, toHanunoo, toTagbanwa } from 'filipino-script-translator';

const result = toBaybayin('maganda');
// Output: ᜋᜄᜈ᜔ᜇ

const result = toTagbanwa('maganda');
// Output: ᝫᝤᝧ

const result = toHanunoo('maganda');
// Output: ᜫᜤᜨ᜴ᜧ

const result = toBuhid('maganda');
// Output: ᝋᝄnᝇ

Package

The package is available in npmjs.com at filipino-script-translator.

Testing

npm run test

Linting

npm run lint

Building

npm run build

License

This package is open-sourced software licensed under the MIT license.

0.0.6

8 months ago

0.0.5

8 months ago

0.0.4

8 months ago

0.0.3

8 months ago

0.0.2

8 months ago

0.0.1

8 months ago