mirror of
https://git.ari.lt/ari.lt/ari.lt.git
synced 2025-02-05 01:59:25 +01:00
c087e4fb41
Signed-off-by: Ari Archer <ari.web.xyz@gmail.com>
10 lines
166 B
JavaScript
10 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);
|
|
}
|