We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c91f4ea commit f929664Copy full SHA for f929664
src/Workspace/index.js
@@ -132,22 +132,15 @@ console.log(ObjectHideFlags);
132
*/
133
134
135
+
136
return [
137
ObjectHideFlags,
-
138
wait,
139
140
waitMs
141
142
] = [
143
144
flags,
145
146
- function(time) {
147
- return new Promise(resolve => setTimeout(resolve, this.parse(time)*1000));
148
- });
149
150
151
- return new Promise(resolve => setTimeout(resolve, this.parse(time)));
152
+ function(time) { return new Promise(resolve => setTimeout(resolve, this.parse(time)*1000)) }),
+ function(time) { return new Promise(resolve => setTimeout(resolve, this.parse(time))) })
153
];
0 commit comments