Leading Zeroes
Pad a number with leading zeroes (to the left)
padWithLeadingZeroesnum, targetLength;
Example
; // => "00000555" ;// => "007 is James Bond"
Parameters
num
Type | Required |
---|---|
number or string |
Yes |
The input to which leading zeroes should be added.
targetLength
Type | Required |
---|---|
number |
Yes |
The length of the resulting string once the current string has been padded. If the value is lower than the current string's length, the current string will be returned as is.
Installation
In your project's root folder, run:
yarn add leading-zeroes
Then in your JS code, add:
;
Running Tests
Clone this project into your local computer and run the following in its root
directory (where the package.json
is):
yarn installyarn test
License
Released under the MIT license.