astro-ghostcms/.pnpm-store/v3/files/8f/583c8943b2c7991f5ff053b8a24...

10 lines
220 B
Plaintext
Raw Normal View History

2024-02-14 14:10:47 +00:00
'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));
};