Guest User

Untitled

a guest
Jan 18th, 2019
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.20 KB | None | 0 0
  1. export function twoDigits(value) {
  2. if (value === undefined || !value) {
  3. return '00';
  4. }
  5. if (value.toString().length <= 1) {
  6. return '0' + value.toString();
  7. }
  8. return value.toString();
  9. };
Add Comment
Please, Sign In to add comment