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