Socket
Book a DemoInstallSign in
Socket

add-zero

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

add-zero

Add a leading zero to a number.

latest
Source
npmnpm
Version
1.0.0
Version published
Weekly downloads
1.2K
-17.27%
Maintainers
1
Weekly downloads
 
Created
Source

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

Keywords

zero

FAQs

Package last updated on 14 Aug 2015

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts