Files
30-seconds-of-code/node_modules/gud/index.js
2019-08-20 15:52:05 +02:00

9 lines
139 B
JavaScript

// @flow
'use strict';
var key = '__global_unique_id__';
module.exports = function() {
return global[key] = (global[key] || 0) + 1;
};