JSPM

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

Khmer number to word

Package Exports

  • khmerword
  • khmerword/index.js

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 (khmerword) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

Khmer word from integer

Convert integer/decimal to Khmer word

Installation

npm install khmerword

Usage

// ESM
import { integer, decimal } from 'khmerword';

// CommonJS
const { integer, decimal } = require('khmerword/cjs');

const result = integer(5246111515165, "-");
// => ប្រាំទ្រីលាន-ពីររយ-សែសិបប្រាំមួយប៊ីលាន-មួយរយ-ដប់មួយលាន-ប្រាំសែន-មួយម៉ឺន-ប្រាំពាន់-មួយរយ-ហុកសិបប្រាំ

const result = decimal(1234.1234, "-");
// => មួយពាន់-ពីររយ-សាមសិបបួន*ក្បៀស*មួយ-ពីរ-បី-បួន

const result = integer(-1);
// =>  *ដក*មួយ

License

MIT License

Copyright (c) 2022 Seanghay Yath

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.