UNPKG

ember-material-icons

Version:

Google Material icons for your ember-cli app

19 lines (12 loc) 349 B
/** * Get current time in miliseconds */ function now(){ // yes, we defer the work to another function to allow mocking it // during the tests return now.get(); } now.get = (typeof Date.now === 'function')? Date.now : function(){ return +(new Date()); }; module.exports = now;