FLUJOS/VISUALIZACION/node_modules/underscore/amd/now.js
2025-11-07 00:06:12 +01:00

10 lines
190 B
JavaScript
Executable file

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;
});