Decrease tableflip delay

This commit is contained in:
Daniel Odendahl Jr
2018-07-01 02:07:40 +00:00
parent 5abe92b220
commit 65c6631354
6 changed files with 10 additions and 10 deletions
+1 -1
View File
@@ -5,7 +5,7 @@ const yes = ['yes', 'y', 'ye', 'yeah', 'yup', 'yea'];
const no = ['no', 'n', 'nah', 'nope'];
class Util {
static wait(ms) {
static delay(ms) {
return new Promise(resolve => setTimeout(resolve, ms));
}