Code coverage report for koa-jade/example/helpers/format-date.js

Statements: 100% (2 / 2)      Branches: 100% (0 / 0)      Functions: 100% (1 / 1)      Lines: 100% (2 / 2)      Ignored: none     

All files » koa-jade/example/helpers/ » format-date.js
1 2 3 4 5 6 71     6      
module.exports = {
  moduleName: 'format',
  moduleBody: function (input) {
    return input.getMonth() + 1 + '/' + input.getDate() + '/' + input.getFullYear()
  }
}