Skip to content

Instantly share code, notes, and snippets.

View frncs-eu's full-sized avatar

Francesco Lodovici frncs-eu

View GitHub Profile
@frncs-eu
frncs-eu / leftpad.js
Created April 18, 2019 14:06
Simple leftpad implementation
const leftpad = (str,len,ch) => [...Array(len - str.length)].map(c => ch).join("")+str;
module.exports = leftpad;