aswi2020vldc-gitlab/templetes/node_modules/gud/index.js @ 56f6c6df
1 |
// @flow
|
---|---|
2 |
'use strict'; |
3 |
|
4 |
var key = '__global_unique_id__'; |
5 |
|
6 |
module.exports = function() { |
7 |
return global[key] = (global[key] || 0) + 1; |
8 |
};
|