revere.dev/safelock/dashboard/node_modules/es-abstract/helpers/padTimeComponent.js

10 lines
220 B
JavaScript
Raw Permalink Normal View History

2024-07-01 21:55:25 +02: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));
};