Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

thai-baht-text-ts

pthongtaem1.6kMIT1.1.0TypeScript support: included

Convert number to Thai Bath as Text

Thai, baht, text, ThaiBaht, ThaiBahtText, Thai baht, Thai baht text, convert, javascript, typescript, convert thai baht

readme

Thai Baht Text TS

NPM Version license

Installation | Usage

Convert number to Thai Baht as Text

แปลง เลข ให้เป็น หน่วยบาทไทย


Installation

วิธีติดตั้ง

npm install thai-baht-text-ts --save
or
yarn add thai-baht-text-ts

Usage

วิธีการใช้งาน

Javascript ES5

const { ThaiBaht } = require('thai-baht-text-ts') // for ES5

let money = 10050
let moneyText = ThaiBaht(money)

console.log(moneyText)
// OUTPUT: หนึ่งหมื่นห้าสิบบาทถ้วน

money = 12345678988888.50

console.log(ThaiBaht(money))
// OUTPUT: สิบสองล้านล้านสามแสนสี่หมื่นห้าพันหกร้อยเจ็ดสิบแปดล้านเก้าแสนแปดหมื่นแปดพันแปดร้อยแปดสิบแปดบาทห้าสิบสตางค์

More infomation ES5 Example


Javascript ES6

import { ThaiBaht } from 'thai-baht-text-ts' // for ES6

let money = 10050
let moneyText = ThaiBaht(money)

console.log(moneyText)
// OUTPUT: หนึ่งหมื่นห้าสิบบาทถ้วน

money = 12345678988888.50

console.log(ThaiBaht(money))
// OUTPUT: สิบสองล้านล้านสามแสนสี่หมื่นห้าพันหกร้อยเจ็ดสิบแปดล้านเก้าแสนแปดหมื่นแปดพันแปดร้อยแปดสิบแปดบาทห้าสิบสตางค์

More infomation ES6 Example

CAUTION!

You can use number that doesn't over than 9007199254740991

that is MAX_SAFE_INTEGER of javascript.

คุณสามารถใส่เลขได้ไม่เกิน 9007199254740991

ซึ่งเป็น MAX_SAFE_INTEGER ของ javascript


License

The Thai-Baht-Text-TS is open-sourced software licensed under the MIT license.

Ending message

If you found bugs or some missing point, please send pull request back or open an issue.

forked from antronic/thai-baht-text-js