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 🙏

© 2024 – Pkg Stats / Ryan Hefner

baht

v0.7.1

Published

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

Downloads

381

Readme

Baht.js

install size

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

Demo

  • https://baht-js.vercel.app

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
  • Apple Macbook Pro with Node v14.16.0

    yarn benchmark
    
    baht (x100000): 648ms
    bahtLatest (x100000): 1393ms
    thaiBahtLib (x100000): 5855ms
    bahttext (x100000): 5664ms
    BAHTTEXT.js (x100000): 8145ms
    thai-baht-text (x100000): 15730ms
    thai-baht-text-ts (x100000): 15734ms
  • Apple Macbook Pro 16-inch (i7, 16GB) with Node v16.12.0

    yarn benchmark
    
    baht (x100000): 484ms
    bahtLatest (x100000): 1044ms
    thaiBahtLib (x100000): 4753ms
    bahttext (x100000): 5120ms
    BAHTTEXT.js (x100000): 7427ms
    thai-baht-text (x100000): 13208ms
    thai-baht-text-ts (x100000): 12344ms
  • Intel(R) Xeon(R) Platinum 8259CL CPU @2.50GHz (64-bit) with Node v14.16.1

    yarn benchmark
    
    baht (x100000): 684ms
    bahtLatest (x100000): 1589ms
    thaiBahtLib (x100000): 7366ms
    bahttext (x100000): 7166ms
    BAHTTEXT.js (x100000): 11513ms
    thai-baht-text (x100000): 19315ms
    thai-baht-text-ts (x100000): 17400ms

Baht.js is the fastest!

LICENSE

MIT