From aacb0eaa3d4ea65eea44cb727065be10a4734c9b Mon Sep 17 00:00:00 2001 From: "greenkeeper[bot]" <23040076+greenkeeper[bot]@users.noreply.github.com> Date: Thu, 22 Aug 2019 23:34:42 +0000 Subject: [PATCH] update and fix standard Closes #176 --- iterator.js | 2 +- package.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/iterator.js b/iterator.js index 0f64738..406a0b8 100644 --- a/iterator.js +++ b/iterator.js @@ -89,7 +89,7 @@ Iterator.prototype.onItem = function (cursor) { this._cache.push(cursor.key, cursor.value) if (this._limit <= 0 || ++this._count < this._limit) { - cursor['continue']() + cursor.continue() } this.maybeNext() diff --git a/package.json b/package.json index 808ae34..08ec4d3 100644 --- a/package.json +++ b/package.json @@ -40,7 +40,7 @@ "level-community": "^3.0.0", "level-concat-iterator": "^2.0.0", "nyc": "^14.0.0", - "standard": "^13.0.1", + "standard": "^14.0.2", "tape": "^4.0.0", "uuid": "^3.3.2" },