csballz/koala-puree

View on GitHub
lib/moment_helpers.js

Summary

Maintainability
A
0 mins
Test Coverage

var moment = require("moment");
moment.fn.yesterday = function(){
    return this.subtract(1, "days");
};
moment.fn.tomorrow = function(){
    return this.add(1, "days");
};

module.exports = exports = moment;