fume-fhir-converter
Version:
FHIR-Utilized Mapping Engine - Community
12 lines • 372 B
JavaScript
;
/**
* © Copyright Outburn Ltd. 2022-2024 All Rights Reserved
* Project name: FUME-COMMUNITY
*/
Object.defineProperty(exports, "__esModule", { value: true });
exports.wait = void 0;
const wait = async (milliseconds) => {
return await new Promise(resolve => setTimeout(resolve, milliseconds));
};
exports.wait = wait;
//# sourceMappingURL=wait.js.map