Skip to content

Commit 93c94e9

Browse files
committed
Updates github build.
1 parent ab0f8ec commit 93c94e9

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

lib/react-component-queries.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/utils/mergeWith.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
const mergeWith = (x, y, fn) => {
33
const result = Object.assign({}, x);
44

5-
Object.keys(y).forEach(key => {
5+
Object.keys(y).forEach((key) => {
66
if (x[key] && y[key]) {
77
result[key] = fn(x[key], y[key], key);
88
} else if (y[key]) {

src/utils/shallowEqual.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ export default function shallowEqual(objA, objB) {
1414

1515
// Test for A's keys different from B.
1616
const hasOwn = Object.prototype.hasOwnProperty;
17-
for (let i = 0; i < keysA.length; i++) {
17+
for (let i = 0; i < keysA.length; i++) { // eslint-disable-line no-plusplus
1818
if (!hasOwn.call(objB, keysA[i]) ||
1919
objA[keysA[i]] !== objB[keysA[i]]) {
2020
return false;

0 commit comments

Comments
 (0)