Skip to content

Latest commit

 

History

History
30 lines (18 loc) · 691 Bytes

README.md

File metadata and controls

30 lines (18 loc) · 691 Bytes

left-pad

Go package to left pad a string with a character.

Inspired by the "left-pad" NPM package (and the fiasco that happened after its removal).

Build status

Branch: master — master|Build Status

Install

go get github.com/keltia/leftpad 

Usage

GoDoc

import "github.com/keltia/leftpad"

leftpad.Pad("foo", 5)    // "  foo"
leftpad.Pad("foobar", 8) // "  foobar"
leftpad.Pad("foobar", 6) // "foobar"

leftpad.PadChar("foo", 5, 'X') // "XXfoo"