UNPKG

qcobjects

Version:

QCObjects is an Open-source framework that empowers full-stack developers to make micro-services and micro-frontends into an N-Tier architecture.

9 lines (7 loc) 238 B
/** * Primary instance ID of all objects */ export var __instanceID = 0; export const IncrementInstanceID = (): void => { __instanceID = (typeof __instanceID === "undefined" || __instanceID === null) ? (0) : (__instanceID + 1); };