@mskcc/carbon-react
Version:
Carbon react components for the MSKCC DSM
21 lines (16 loc) • 380 B
JavaScript
/**
* MSKCC 2021, 2024
*/
;
Object.defineProperty(exports, '__esModule', { value: true });
/**
* Generic utility to initialize a method that will return a unique instance id
* for a component.
*/
function setupGetInstanceId() {
let instanceId = 0;
return function getInstanceId() {
return ++instanceId;
};
}
exports["default"] = setupGetInstanceId;