Skip to content

Instantly share code, notes, and snippets.

@gskema
Created August 31, 2016 18:09
Show Gist options
  • Save gskema/858a5c10bf46fe64a1f994f633e64c6e to your computer and use it in GitHub Desktop.
Save gskema/858a5c10bf46fe64a1f994f633e64c6e to your computer and use it in GitHub Desktop.
Left pad JavaScript string
export function lpad(pad, string) {
var trueString = '' + string;
return pad.substring(0, pad.length - trueString.length) + trueString;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment