Assignment5_new/node_modules/es-abstract/helpers/padTimeComponent.js

10 lines
211 B
JavaScript
Raw Normal View History

2025-01-07 05:14:59 +00:00
'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));
};