mirror of
https://github.com/arthur-pbty/portfolio2023.git
synced 2026-06-03 23:36:21 +02:00
5 lines
112 B
JavaScript
5 lines
112 B
JavaScript
module.exports = function pad (num, size) {
|
|
var s = '000000000' + num;
|
|
return s.substr(s.length - size);
|
|
};
|