blob: 0d8afc059ce07c7a7db999b471d2ec9606c1829b [file] [log] [blame]
Leo Repp58b9f112021-11-22 11:57:47 +01001'use strict';
2
3var callBound = require('call-bind/callBound');
4
5var $strSlice = callBound('String.prototype.slice');
6
7module.exports = function padTimeComponent(c, count) {
8 return $strSlice('00' + c, -(count || 2));
9};