number_format-php

1.0.15 • Public • Published

Ported PHP function "number_format" in JavaScript

Build Status

npm npm npm

Install

NodeJS

npm i number_format-php --save

Web

<script src="number-format.js"></script>

Usage

NodeJS

var number_format = require("number_format-php");
number_format(1234567.125, 2, ".", " "); // 1 234 567.13

Web

number_format(1234567.125, 2, ".", " "); // 1 234 567.13

// AMD
requirejs(["helper/number_format"], function(number_format) {
  number_format(1234567.125, 2, ".", " "); // 1 234 567.13
});

Package Sidebar

Install

npm i number_format-php

Weekly Downloads

223

Version

1.0.15

License

MIT

Unpacked Size

11.6 kB

Total Files

10

Last publish

Collaborators

  • tasofen