UNPKG

@datorama/akita

Version:

A Reactive State Management Tailored-Made for JS Applications

17 lines 266 B
/** * Generate random guid * * @example * * { * id: guid() * } * * @remarks this isn't a GUID, but a 10 char random alpha-num */ export function guid() { return Math.random() .toString(36) .slice(2); } //# sourceMappingURL=guid.js.map