Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

filipino-script-translator

isaacdarcilla7MIT0.0.6TypeScript support: included

Translate text into Baybayin, Buhid, Hanunoo and Tagbanwa scripts.

typescript, baybayin, buhid, tagbanwa, translator

readme

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.