JSPM

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

Convert number to Thai Baht format, but faster & fully typed.

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

NPM version install size

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.

  • Apple Macbook Pro M1

    yarn benchmark
    
    baht 0.5.0 (x100000): 355ms
    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-ts (x100000): 7710ms
    thai-baht-text (x100000): 8525ms

Baht.js is the fastest!

LICENSE

MIT