mirror of
https://github.com/joelwmale/webhook-action.git
synced 2024-08-25 08:08:00 +00:00
1ada95e04a
- Convert project to Javascript/Typescript - Allow custom headers to be passed in (optional) - Allow body to be optional
10 lines
221 B
JavaScript
10 lines
221 B
JavaScript
'use strict';
|
|
|
|
var callBound = require('../helpers/callBound');
|
|
|
|
var $strSlice = callBound('String.prototype.slice');
|
|
|
|
module.exports = function padTimeComponent(c, count) {
|
|
return $strSlice('00' + c, -(count || 2));
|
|
};
|