@cynario/justify
v0.1.0
Published
Pythonic string justify
Readme
justify
Pythonic string justify.
install
npm i @cynario/justifyusage
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**