📄 now.js
/home/palash/git/site/node_modules/underscore/amd/now.js
Language: js • Lines: 10
define(function () {

  // A (possibly faster) way to get the current timestamp as an integer.
  var now = Date.now || function() {
    return new Date().getTime();
  };

  return now;

});