UNPKG

@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.

14 lines (13 loc) 436 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.sleep = void 0; /*************************************** * Title: Util * Description: utility methods * Author: Wout Slabbinck (wout.slabbinck@ugent.be) * Created on 16/12/2021 *****************************************/ function sleep(ms) { return new Promise(function (resolve) { return setTimeout(resolve, ms); }); } exports.sleep = sleep;