mirror of
https://git.ari.lt/ari.lt/ari.lt.git
synced 2025-02-05 01:59:25 +01:00
11 lines
166 B
JavaScript
11 lines
166 B
JavaScript
|
"use strict";
|
||
|
|
||
|
// Get padding
|
||
|
export function gp(str, pad) {
|
||
|
let ammount = pad - str.length;
|
||
|
|
||
|
if (ammount <= 0) return "";
|
||
|
|
||
|
return " ".repeat(ammount);
|
||
|
}
|