add-zero
DefinitelyTyped icon, indicating that this package has TypeScript declarations provided by the separate @types/add-zero package

1.0.0 • Public • Published

add-zero Build Status

Add a leading zero to a number.

Install

Via npm:

$ npm install add-zero --save

Via Bower:

$ bower install add-zero --save

Usage

var addZero = require('add-zero');
 
addZero(5); // 05
addZero(10); // 10
addZero(5, 3); // 005
addZero(100, 3); // 100
addZero(-5); // -05
addZero(-5, 3); // -005

API

addZero(value, [digits])

value

Type: number (integer) or string

Value in which a leading zero should be added to.

digits

Type: number
Default: 2

Total number of digits or decimal places.

License

MIT © Rafael Rinaldi

Package Sidebar

Install

npm i add-zero

Weekly Downloads

2,052

Version

1.0.0

License

MIT

Last publish

Collaborators

  • rafaelrinaldi