npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2025 – Pkg Stats / Ryan Hefner

khmer-utils

v1.0.0

Published

A Khmer utility library for number formatting, currency conversion, date localization, transliteration, and text normalization.

Readme

Khmer Number & Currency Formatter 🛠🇰🇭

A lightweight utility library to help developers format numbers, currencies, and dates using Khmer Unicode, along with utilities for transliteration, normalization, and Khmer-specific input validation.

📦 Installation

Install via npm:

npm install khmer-utils

📚 Features

  • ✅ Convert Arabic numbers to Khmer numerals
  • ✅ Format currency into Khmer Riel () or រៀល
  • ✅ Format Date objects using Khmer digits
  • ✅ Normalize Khmer text (trim, reduce spaces, normalize Unicode)
  • ✅ Transliterate Khmer script to Latin phonetics
  • ✅ Validate Khmer phone numbers & national IDs

🛠 Usage

1. Importing

const {
  formatNumber,
  formatCurrency,
  formatDate,
  normalizeText,
  khmerToLatin,
  validateMobile,
  validateLandline,
  validateNationalID,
} = require("khmer-utils");

🔢 formatNumber

Convert Arabic numbers to Khmer numerals.

formatNumber(12345); // "១២៣៤៥"
formatNumber("123,456.78"); // "១២៣,៤៥៦.៧៨"

💵 formatCurrency

Format numbers as Khmer Riel currency.

formatCurrency(12345);
// Output: "១២,៣៤៥៛"

formatCurrency(12345.678, {
  minimumFractionDigits: 2,
  maximumFractionDigits: 2,
  currencySymbol: " រៀល",
});
// Output: "១២,៣៤៥.៦៨ រៀល"

📅 formatDate

Format JavaScript Date objects into DD/MM/YYYY using Khmer digits.

formatDate(new Date(2023, 2, 15));
// Output: "១៥/៣/២០២៣"

formatDate(new Date(2025, 0, 1), { delimiter: "-" });
// Output: "១-១-២០២៥"

🧹 normalizeText

Normalize Khmer or mixed-language text by:

  • Removing extra spaces
  • Lowercasing
  • Unicode NFC normalization
normalizeText("   សួស្តី   ពិភពលោក   ");
// Output: "សួស្តី ពិភពលោក"

🔤 khmerToLatin

Transliterate basic Khmer script to Latin characters.

khmerToLatin("កខគឃង");
// Output: "kkhggng"

✅ Validators

validateMobile

validateMobile("+855-12-3456789"); // true
validateMobile("+855-123-456789"); // false

validateLandline

validateLandline("+855-23-123456"); // true
validateLandline("+855-23-12345"); // false

validateNationalID

validateNationalID("1234567890"); // true
validateNationalID("123456789"); // false

🔒 License

MIT License

📝 Others

Feel free to reach out if you want to contribute or report issues!

  1. Fork this repo
  2. Create a new branch: git checkout -b my-change
  3. Make your changes
  4. Submit a pull request

🌐 Support & Community

If you find this useful for Khmer development or localization, please ⭐️ the repo and share it!

Created with ❤️ by Seavleu Heang