Skip to content

Instantly share code, notes, and snippets.

@marcoslhc
Last active February 15, 2017 01:50
Show Gist options
  • Select an option

  • Save marcoslhc/018bb84f39022bf67f28add7c1a60238 to your computer and use it in GitHub Desktop.

Select an option

Save marcoslhc/018bb84f39022bf67f28add7c1a60238 to your computer and use it in GitHub Desktop.
export const pad = (char) => (
(number, padLeft = false) => (
(str) => (
number
? (padLeft
? pad(char)(--number)('' + char).concat(str + '')
: pad(char)(--number)('' + str).concat(char + ''))
: str
)));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment