cowbell/splittypie

View on GitHub
app/utils/left-pad.js

Summary

Maintainability
A
0 mins
Test Coverage
export default function leftPad(pad, string) {
    return pad.substring(0, pad.length - string.length) + string;
}