Skip to content

Instantly share code, notes, and snippets.

@reqshark
Created September 30, 2016 09:45
Show Gist options
  • Save reqshark/9b8fce5258cfcf7fd801410df02a3d02 to your computer and use it in GitHub Desktop.
Save reqshark/9b8fce5258cfcf7fd801410df02a3d02 to your computer and use it in GitHub Desktop.
when was that?
/**
* `_ (27).daysago`
* returns date notation n days ago
*/
exports._ = n => { // 86400000 == 24 hrs
return { daysago : new Date( Date.now() - (n * 86400000) )};
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment