Skip to content

Commit

Permalink
Fix compatibility issue
Browse files Browse the repository at this point in the history
  • Loading branch information
mattflow committed May 14, 2018
1 parent 4951627 commit 6b1c5e5
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions index.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
module.exports = (() => {
// eslint-disable-next-line func-names
module.exports = (function () {
'use-strict';

const CHUNK_SIZE = 3;
const ROW_COL_SIZE = CHUNK_SIZE * CHUNK_SIZE;
const SIZE = ROW_COL_SIZE * ROW_COL_SIZE;
Expand Down Expand Up @@ -97,4 +97,4 @@ module.exports = (() => {
}

return solve;
})();
}());

0 comments on commit 6b1c5e5

Please sign in to comment.