UNPKG

@mskcc/carbon-react

Version:

Carbon react components for the MSKCC DSM

18 lines (15 loc) 355 B
/** * MSKCC 2021, 2024 */ /** * Generic utility to initialize a method that will return a unique instance id * for a component. */ const setupGetInstanceId = () => { let instanceId = 0; return function getInstanceId() { return ++instanceId; }; }; var setupGetInstanceId$1 = setupGetInstanceId; export { setupGetInstanceId$1 as default };