Package Exports
- baht
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 (baht) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
Baht.js
Convert number to Thai Baht format, but faster & fully typed.
Usage
Install with npm or yarn
npm install baht # or yarn add baht
Import and use
import { convert } from 'baht'; convert(42); // "สี่สิบสองบาทถ้วน" convert(123.45); // "หนึ่งร้อยยี่สิบสามบาทสี่สิบห้าสตางค์"
Features
- Converts number to Thai Baht formatted string.
- Converts long number (Use string format to prevent precision loss.)
- Supports 2 decimal places (Satangs), for over 2 decimal places it will round down.
- Supports negative number.
Benchmark
Run the benchmark to measure the speed among other libraries.
yarn benchmark
baht 0.4.0 (x100000): 665ms
baht 0.3.2 (x100000): 2968ms
thaiBahtLib (x100000): 3189ms
bahttext (x100000): 3503ms
BAHTTEXT.js (x100000): 4816ms
thai-baht-text (x100000): 8525ms
thai-baht-text-ts (x100000): 7710ms
✨ Done in 31.53s.Baht.js is the fastest!
LICENSE
MIT