UNPKG

@genexus/web-standard-functions

Version:

GeneXus JavaScript standard functions library for web generators

9 lines 280 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.sleep = void 0; const sleep = async (seconds) => { await new Promise(resolve => setTimeout(resolve, seconds * 1000)); return 0; }; exports.sleep = sleep; //# sourceMappingURL=sleep.js.map