jstime

1.0.0 • Public • Published

JS Time

Works both on Node and the browser

require('./lib/jsTime.js');
<script type="type/javascript" src="js/jsTime.js"></ script>

After that you can do things like these:

setTimeout(function(){
	alert('After 10 seconds');
}, 10..seconds());

setInterval(function(){
	alert('Every 1.5 hours');
}, 1.5.minutes());

// Timestamp of 3 days from now
var expire = new Date() + 3..days();

The double dot (..) is needed for integer numbers, else the interpreter thinks it's a mistyped float number. Another possible syntax that is just a it longer but less magical would be:

var expire = new Date() + (3).days();

Pick the one you prefer.

TODO

  • Add a getter version that only works on modern browsers

Dependencies (0)

    Dev Dependencies (2)

    Package Sidebar

    Install

    npm i jstime

    Weekly Downloads

    1

    Version

    1.0.0

    License

    MIT

    Last publish

    Collaborators

    • flesler