JSPM

  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 10
  • Score
    100M100P100Q56650F
  • License MIT

Convert between Myanmar, Shan, and Arabic numerals, Numbers, and Dates

Package Exports

  • myanmar-numbers

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (myanmar-numbers) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

myanmar.numbers.js

Simple JavaScript library to convert between Myanmar/Burmese, Shan, and Arabic numerals (0-9).

Does parsing to return Number and Date types when possible.

You may need to install fonts to see Myanmar and Shan numbers.

Alternative to convert into Myanmar numerals: myanmar-numeral package from Fraser Xu.

Package to convert dates to traditional / Myanmar Civil Calendar coming soon.

Usage

Convert to Arabic numerals

myanmarNumbers("၈၀");
> 80

myanmarNumbers("၅၂ West Road");
> "52 West Road"

myanmarNumbers("၂.၄.၂၀၁၀");
> Fri Apr 02 2010 00:00:00

Convert to Myanmar numerals

myanmarNumbers(80, "my");
> "၈ဝ"

myanmarNumbers("52 West Road", "my");
> "၅၂ West Road"

myanmarNumbers(new Date("April 2, 2010"), "my");
> "၂.၄.၂ဝ၁ဝ"

Convert to Shan numerals

myanmarNumbers(80, "shan");
> "႘႐"

Node.js

npm install myanmar-numbers
var myanmarNumbers = require("myanmar-numbers");
myanmarNumbers("၅၂ West Road");

License

MIT License