Skip to content

Commit ef82188

Browse files
committed
Lint
1 parent 27c472e commit ef82188

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

lib/Onyx.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import Storage from './storage';
77
import * as Logger from './Logger';
88
import cache from './OnyxCache';
99
import createDeferredTask from './createDeferredTask';
10-
import customizerForMergeWith from "./customizerForMergeWith";
10+
import customizerForMergeWith from './customizerForMergeWith';
1111

1212
// Keeps track of the last connectionID that was used so we can keep incrementing it
1313
let lastConnectionID = 0;

lib/customizerForMergeWith.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import _ from "underscore";
1+
import _ from 'underscore';
22

33
/**
44
* When merging 2 objects into onyx that contain an array, we want to completely replace the array instead of the default

lib/storage/providers/LocalForage.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import localforage from 'localforage';
88
import _ from 'underscore';
99
import lodashMergeWith from 'lodash/mergeWith';
1010
import SyncQueue from '../../SyncQueue';
11-
import customizerForMergeWith from "../../customizerForMergeWith";
11+
import customizerForMergeWith from '../../customizerForMergeWith';
1212

1313
localforage.config({
1414
name: 'OnyxDB',

0 commit comments

Comments
 (0)