Urara-Blog/node_modules/.pnpm-store/v3/files/8f/583c8943b2c7991f5ff053b8a24cacaf60970526037616c79a5dfaaa6a1fd8c10e0758b65419bb1cdba39d7e9018ee7303643b8ac3154c4a497db313f344c1
2022-08-14 01:14:53 +08:00

9 lines
220 B
Text

'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));
};