Commit 9e83ff3b authored by Robert Knight's avatar Robert Knight

Fix `DEBOUNCE_WAIT` export

Following the conversion to an ES module, make `DEBOUNCE_WAIT` separate
export rather than a property of the default export.
parent 0636a9e0
......@@ -7,7 +7,7 @@ let difference = (arrayA, arrayB) => {
return arrayA.filter(x => !arrayB.includes(x));
};
const DEBOUNCE_WAIT = 40;
export const DEBOUNCE_WAIT = 40;
export default class FrameObserver {
constructor(target) {
......@@ -71,5 +71,3 @@ export default class FrameObserver {
}
}
}
FrameObserver.DEBOUNCE_WAIT = DEBOUNCE_WAIT;
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment