function pad()

in serverless/lambda/index.js [882:885]


  function pad(n, z) {
    z = z || 2;
    return ('00' + n).slice(-z);
  }