pad-left

A simple library to left pad a string with a given character up to a certain length.

Usage

```rust use padleft::leftpad;

fn main() { asserteq!(leftpad("hello".tostring(), 15, 'πŸš€'), "πŸš€πŸš€πŸš€πŸš€πŸš€πŸš€πŸš€πŸš€πŸš€πŸš€hello".tostring()); } ```

Run tests

sh cargo test

Build & Open Docs

sh cargo doc --open