Searched refs:zeroFill (Results 1 – 3 of 3) sorted by relevance
/plugin/davcal/fullcalendar-3.10.5/ |
H A D | moment.js | 542 function zeroFill(number, targetLength, forceSign) { function 574 return zeroFill(func.apply(this, arguments), padded[1], padded[2]); 1658 return '' + hFormat.apply(this) + zeroFill(this.minutes(), 2); 1662 return '' + hFormat.apply(this) + zeroFill(this.minutes(), 2) + 1663 zeroFill(this.seconds(), 2); 1667 return '' + this.hours() + zeroFill(this.minutes(), 2); 1671 return '' + this.hours() + zeroFill(this.minutes(), 2) + 1672 zeroFill(this.seconds(), 2); 2790 return sign + zeroFill(~~(offset / 60), 2) + separator + zeroFill(~~(offset) % 60, 2);
|
/plugin/edittable/lib/ |
H A D | handsontable.full.js | 7714 function zeroFill(number, targetLength, forceSign) { 7746 return zeroFill(func.apply(this, arguments), padded[1], padded[2]); 8768 return '' + hFormat.apply(this) + zeroFill(this.minutes(), 2); 8772 return '' + hFormat.apply(this) + zeroFill(this.minutes(), 2) + 8773 zeroFill(this.seconds(), 2); 8777 return '' + this.hours() + zeroFill(this.minutes(), 2); 8781 return '' + this.hours() + zeroFill(this.minutes(), 2) + 8782 zeroFill(this.seconds(), 2); 9869 return sign + zeroFill(~~(offset / 60), 2) + separator + zeroFill(~~(offset) % 60, 2);
|
/plugin/dirtylittlehelper/mermaid/editor/docs/ |
H A D | bundle.js.map | 1 …zeroFill(number, targetLength, forceSign) {\n var absNumber = '' + Math.abs(number),\n …
|