UNPKG

fume-fhir-converter

Version:

FHIR-Utilized Mapping Engine - Community

9 lines (7 loc) 233 B
/** * © Copyright Outburn Ltd. 2022-2024 All Rights Reserved * Project name: FUME-COMMUNITY */ export const wait = async (milliseconds: number) => { return await new Promise(resolve => setTimeout(resolve, milliseconds)); };