Skip to content

Commit 2b65b1f

Browse files
committed
update to standard 16
1 parent 9a39b12 commit 2b65b1f

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

compound.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ function readCompound (buffer, offset, typeArgs, rootNode) {
2828

2929
function writeCompound (value, buffer, offset, typeArgs, rootNode) {
3030
const self = this
31-
Object.keys(value).map(function (key) {
31+
Object.keys(value).forEach(function (key) {
3232
offset = self.write({
3333
name: key,
3434
type: value[key].type,

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
"devDependencies": {
2424
"chai": "^4.2.0",
2525
"mocha": "^8.0.1",
26-
"standard": "^15.0.0"
26+
"standard": "^16.0.1"
2727
},
2828
"scripts": {
2929
"test": "mocha --reporter spec",

0 commit comments

Comments
 (0)