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.
2 parents 47a7997 + 9ba4f48 commit 51a1398Copy full SHA for 51a1398
settings/index.js
@@ -1,7 +1,7 @@
1
const settings = {
2
map: {
3
debounce: {
4
- duration: 1500, // milliseconds
+ duration: 100, // milliseconds
5
options: {
6
leading: true, // calls function immediately when invoked (React-friendly)
7
trailing: false, // calls function after last input event fired (Not React-friendly)
utils/index.js
@@ -181,4 +181,4 @@ export function shuffle(array) {
181
.map(a => ({ sort: Math.random(), value: a }))
182
.sort((a, b) => a.sort - b.sort)
183
.map(a => a.value);
184
-}
+}
0 commit comments