xsdurationjs
v0.0.2
Published
Add xs:duration to dateTime
Downloads
9
Readme
xsdurationjs
Implementation of adding duration to datetime
Install
node.js:
$ npm install xsdurationjs
Browser: Download xsdurationjs to your js directory and put a script tag
<script type="text/javascript" src="/js/xsduration.js"></script>
It does not have any dependency.
synopsis
// node.js
var xsduration = require('xsdurationjs');
var r = xsduration.add('P5M', new Date(2012,0,1);
console.log(r); // puts Thu, 31 May 2012 22:00:00 GMT
// browser
<script type="text/javascript" src="/js/xsduration.js"></script>
<script type="text/javascript">
var r = xsduration.add('P5M', new Date(2012,0,1);
</script>
License
MIT. See LICENSE file.