mirror of
https://github.com/henrywhitaker3/Speedtest-Tracker.git
synced 2026-01-02 11:07:20 +01:00
9 lines
139 B
JavaScript
Vendored
9 lines
139 B
JavaScript
Vendored
// @flow
|
|
'use strict';
|
|
|
|
var key = '__global_unique_id__';
|
|
|
|
module.exports = function() {
|
|
return global[key] = (global[key] || 0) + 1;
|
|
};
|