UNPKG

viem

Version:

TypeScript Interface for Ethereum

13 lines 275 B
function createIdStore() { return { current: 0, take() { return this.current++; }, reset() { this.current = 0; }, }; } export const idCache = /*#__PURE__*/ createIdStore(); //# sourceMappingURL=id.js.map