๐Ÿ˜ŒARAJS

A module provides various functions to process and analyze Arabic text and numbers.

Welcome to ARAJS

Install

npm i arajs

or

npm install arajs

Example

// commonjs:
const { number2text, stripTashkeel } = require("arajs");
// ES6:
import { number2text, stripTashkeel } from "arajs";

const number = 232;
console.log(number2text(number)); // ู…ุฆุชุงู† ูˆ ุฅุซู†ุงู† ูˆ ุซู„ุงุซูˆู†

const text = 'ู…ูŽุฑู’ุญูŽุจู‹ุง ุจููƒูู…ู’';
const strippedText = stripTashkeel(text);
console.log(strippedText); // ู…ุฑุญุจุง ุจูƒู…
๐Ÿ…ฐ๏ธCharacter Functionsโœ…Text Functions๐Ÿ”ขNumbers Functions๐Ÿ’ฟTrans FunctionsโญAvailable Consts

Last updated