aboutsummaryrefslogtreecommitdiffstats
path: root/src/helpers/async-helpers.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/helpers/async-helpers.js')
-rw-r--r--src/helpers/async-helpers.js5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/helpers/async-helpers.js b/src/helpers/async-helpers.js
new file mode 100644
index 000000000..2ef01ee09
--- /dev/null
+++ b/src/helpers/async-helpers.js
@@ -0,0 +1,5 @@
1/* eslint-disable import/prefer-default-export */
2
3export function sleep(ms = 0) {
4 return new Promise(r => setTimeout(r, ms));
5}