/*! * Copyright (c) Microsoft Corporation and contributors. All rights reserved. * Licensed under the MIT License. */ /** * Returns a promise that resolves after `timeMs`. * @param timeMs - Time in milliseconds to wait. * * @deprecated Moved to the `@fluidframework/core-utils` package. * @internal */ export const delay = async (timeMs: number): Promise => new Promise((resolve) => setTimeout(() => resolve(), timeMs));