gl-store-s3.js/node_modules/aws-sdk/lib/realclock/browserClock.js

10 lines
253 B
JavaScript
Raw Normal View History

2019-05-08 10:43:08 +00:00
module.exports = {
//provide realtime clock for performance measurement
now: function now() {
if (typeof performance !== 'undefined' && typeof performance.now === 'function') {
return performance.now();
}
return Date.now();
}
};