Pythonic string justify
npm install @cynario/justifyshell
npm i @cynario/justify
`
usage
`js
import {center, ljust, rjust} from "@cynario/justify"
// import {justify} from "@cynario/justify"
// justify.ljust
// ...
const s = "hello"
console.log(ljust(s, 8, "*"))
console.log(rjust(s, 8, "*"))
console.log(center(s, 8, "*"))
console.log(center(s, 9, "*"))
// hello*
// *hello
// hello*
// hello
``