ari.lt/content/js/utils/index.js
Ari Archer c087e4fb41 update @ Sun 22 May 14:57:42 EEST 2022
Signed-off-by: Ari Archer <ari.web.xyz@gmail.com>
2022-05-22 14:57:42 +03:00

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);
}