npm install momentoImmutable moment.js with composable functions and partial application of data
```
$ npm install momento
`js
const nextWeek = pipe(
parse('DD/MM/YYYY'),
add(7, 'days'),
format('DD/MM/YYYY')
)
nextWeek('10/12/2017')
`
Same as moment.add()
`js`
add(2, 'days', now())
Same as moment.format()
`js`
format('DD/MM/YYYY', now())
Same as moment.milliseconds()
`js`
getMilliseconds(now())
Same as moment.seconds()
`js`
getSeconds(now())
Same as moment() without arguments
`js`
now()
Same as moment() with two arguments
`js`
parse('DD/MM/YYYY', '31/10/1993')
Same as moment() with one argument
`js`
parseISO('1993-10-31')
Same as moment.unix()
`js`
parseUnix(752041500)
Same as moment.subtract()
`js``
subtract(2, 'days', now())
Fell free to send a Pull Request! :heart: