Skip to content

Commit 0891c1a

Browse files
authored
Merge pull request #60 from mrsteele/greenkeeper/standard-13.0.1
Update standard to the latest version πŸš€
2 parents ebbf988 + 14183fe commit 0891c1a

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

β€Žpackage.jsonβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@
5252
"mocha": "^5.0.0",
5353
"nyc": "^14.1.0",
5454
"rimraf": "^3.0.0",
55-
"standard": "^12.0.0"
55+
"standard": "^13.0.1"
5656
},
5757
"files": [
5858
"dist",

β€Žsrc/json-truncate.jsβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ const truncate = (obj, options = {}, curDepth = 0) => {
3939
return newArr
4040
} else {
4141
const newObj = {}
42-
for (let key in obj) {
42+
for (const key in obj) {
4343
if (isFlat(obj[key])) {
4444
newObj[key] = obj[key]
4545
} else {

0 commit comments

Comments
Β (0)