pomodoro/client/util/two-digits.js
Linus Miller 47ce0a2a33 Huge commit
- Update all deps
 - Apply midwest changes
 - Convert all templates to JSX
 - Preact instead of Marko
 - Babel & Eslint
2016-11-10 14:34:44 +01:00

4 lines
81 B
JavaScript

export default function twoDigits(val) {
return val >= 10 ? val : `0${val}`;
}