blob: 0d8afc059ce07c7a7db999b471d2ec9606c1829b [file] [log] [blame]
'use strict';
var callBound = require('call-bind/callBound');
var $strSlice = callBound('String.prototype.slice');
module.exports = function padTimeComponent(c, count) {
return $strSlice('00' + c, -(count || 2));
};