@tarojs/extend 3.5.5 → 3.5.6-alpha.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tarojs/extend",
3
- "version": "3.5.5",
3
+ "version": "3.5.6-alpha.0",
4
4
  "description": "Taro extend functionality",
5
5
  "author": "yuche <i@yuche.me>",
6
6
  "homepage": "https://github.com/nervjs/taro/tree/master/packages/taro-extend#readme",
@@ -146,7 +146,7 @@ export function initEvent ($) {
146
146
 
147
147
  try {
148
148
  event.timeStamp || (event.timeStamp = Date.now())
149
- } catch (ignored) { }
149
+ } catch (ignored) {} // eslint-disable-line no-empty
150
150
 
151
151
  if (source.defaultPrevented !== undefined ? source.defaultPrevented
152
152
  : 'returnValue' in source ? source.returnValue === false
@@ -223,7 +223,7 @@ try {
223
223
  let i = 0
224
224
 
225
225
  // Can't trust NodeList.length
226
- while ((target[j++] = els[i++])) {}
226
+ while ((target[j++] = els[i++])) {} // eslint-disable-line no-empty
227
227
  target.length = j - 1
228
228
  }
229
229
  }