Skip to content
This repository was archived by the owner on Dec 1, 2024. It is now read-only.

Commit a71bbf2

Browse files
author
Lars-Magnus Skog
authored
Merge pull request #608 from Level/greenkeeper/standard-12.0.0
Update standard to the latest version 🚀
2 parents b6da5dc + ba45081 commit a71bbf2

3 files changed

Lines changed: 4 additions & 3 deletions

File tree

lib/levelup.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ function LevelUP (db, options, callback) {
4949
throw error
5050
}
5151

52-
assert.equal(typeof db.status, 'string', '.status required, old abstract-leveldown')
52+
assert.strictEqual(typeof db.status, 'string', '.status required, old abstract-leveldown')
5353

5454
this.options = getOptions(options)
5555
this._db = db

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@
4545
"remark-github": "~7.0.3",
4646
"remark-toc": "~5.0.0",
4747
"safe-buffer": "^5.1.0",
48-
"standard": "^11.0.0",
48+
"standard": "^12.0.0",
4949
"tape": "^4.7.0",
5050
"trickle": "0.0.2"
5151
},

test/read-stream-test.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -410,7 +410,8 @@ buster.testCase('ReadStream', {
410410
encode: JSON.stringify,
411411
decode: JSON.parse,
412412
buffer: false
413-
}}
413+
}
414+
}
414415
var data = [
415416
{ type: 'put', key: 'aa', value: { a: 'complex', obj: 100 } },
416417
{ type: 'put', key: 'ab', value: { b: 'foo', bar: [ 1, 2, 3 ] } },

0 commit comments

Comments
 (0)