@treecg/ldes-orchestrator
Version:
Fills the gaps that a Linked Data Platform (LDP) cannot do by itself for creating a Linked Data Event Stream (LDES) in LDP.
10 lines (9 loc) • 319 B
text/typescript
/***************************************
* Title: Util
* Description: utility methods
* Author: Wout Slabbinck (wout.slabbinck@ugent.be)
* Created on 16/12/2021
*****************************************/
export function sleep(ms: number): Promise<any> {
return new Promise(resolve => setTimeout(resolve, ms));
}