UNPKG

@yncoder/element-react

Version:
14 lines (11 loc) 309 B
import _classCallCheck from "babel-runtime/helpers/classCallCheck"; export var IDGenerator = function () { function IDGenerator() { _classCallCheck(this, IDGenerator); this.id = 0; } IDGenerator.prototype.next = function next() { return this.id++ & 0xffff; }; return IDGenerator; }();