๐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); // ู
ุฑุญุจุง ุจูู
Last updated