mirror of
https://github.com/DeviceFarmer/stf.git
synced 2026-04-19 00:33:30 +02:00
Fix all res/ files with ESLint rules with 0 errors.
This commit is contained in:
@@ -12,14 +12,11 @@ module.exports = function patchArray(a, b) {
|
||||
var ops = []
|
||||
|
||||
var workA = [].concat(a)
|
||||
, inA = Object.create(null)
|
||||
, itemA
|
||||
, cursorA
|
||||
var inA = Object.create(null)
|
||||
var itemA, cursorA, itemB, cursorB
|
||||
|
||||
var inB = existenceMap(b)
|
||||
, posB = Object.create(null)
|
||||
, itemB
|
||||
, cursorB
|
||||
var posB = Object.create(null)
|
||||
|
||||
// First, check what was removed from a.
|
||||
for (cursorA = 0; cursorA < workA.length;) {
|
||||
|
||||
@@ -1,3 +1,5 @@
|
||||
/* eslint no-console: 0 */
|
||||
|
||||
var assert = require('assert')
|
||||
|
||||
var patchArray = require('./patch-array')
|
||||
|
||||
Reference in New Issue
Block a user