Skip to content

Commit f8e13e1

Browse files
committed
Fix IIFE syntax
1 parent 8b8c22f commit f8e13e1

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

react-list.es6

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ const PASSIVE = (() => {
3838
});
3939
} catch (e) {}
4040
return hasSupport;
41-
}() ? {passive: true} : false;
41+
})() ? {passive: true} : false;
4242

4343
module.exports = class ReactList extends Component {
4444
static displayName = 'ReactList';

0 commit comments

Comments
 (0)