GoScrobble/web/node_modules/gud/index.js

9 lines
139 B
JavaScript
Raw Permalink Normal View History

2022-04-25 02:47:15 +00:00
// @flow
'use strict';
var key = '__global_unique_id__';
module.exports = function() {
return global[key] = (global[key] || 0) + 1;
};