Skip to content

Commit 7774c10

Browse files
committed
fix: add __proto__ to objects and arrays
1 parent edde30a commit 7774c10

File tree

3 files changed

+45
-7
lines changed

3 files changed

+45
-7
lines changed

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,9 @@
33
[c-unreleased]: https://github.com/json5/json5/tree/main
44
[d-unreleased]: https://github.com/json5/json5/compare/v2.2.1...HEAD
55

6+
- Fix: Properties with the name `__proto__` are added to objects and arrays.
7+
([#199])
8+
69
### v2.2.1 [[code][c2.2.1], [diff][d2.2.1]]
710

811
[c2.2.1]: https://github.com/json5/json5/tree/v2.2.1
@@ -360,6 +363,7 @@ parser for the regular JSON format.
360363
[#182]: https://github.com/json5/json5/issues/182
361364
[#187]: https://github.com/json5/json5/issues/187
362365
[#196]: https://github.com/json5/json5/issues/196
366+
[#199]: https://github.com/json5/json5/issues/199
363367
[#208]: https://github.com/json5/json5/issues/208
364368
[#210]: https://github.com/json5/json5/issues/210
365369
[#222]: https://github.com/json5/json5/issues/222

lib/parse.js

+34-7
Original file line numberDiff line numberDiff line change
@@ -42,12 +42,34 @@ module.exports = function parse (text, reviver) {
4242
function internalize (holder, name, reviver) {
4343
const value = holder[name]
4444
if (value != null && typeof value === 'object') {
45-
for (const key in value) {
46-
const replacement = internalize(value, key, reviver)
47-
if (replacement === undefined) {
48-
delete value[key]
49-
} else {
50-
value[key] = replacement
45+
if (Array.isArray(value)) {
46+
for (let i = 0; i < value.length; i++) {
47+
const key = String(i)
48+
const replacement = internalize(value, key, reviver)
49+
if (replacement === undefined) {
50+
delete value[key]
51+
} else {
52+
Object.defineProperty(value, key, {
53+
value: replacement,
54+
writable: true,
55+
enumerable: true,
56+
configurable: true,
57+
})
58+
}
59+
}
60+
} else {
61+
for (const key in value) {
62+
const replacement = internalize(value, key, reviver)
63+
if (replacement === undefined) {
64+
delete value[key]
65+
} else {
66+
Object.defineProperty(value, key, {
67+
value: replacement,
68+
writable: true,
69+
enumerable: true,
70+
configurable: true,
71+
})
72+
}
5173
}
5274
}
5375
}
@@ -973,7 +995,12 @@ function push () {
973995
if (Array.isArray(parent)) {
974996
parent.push(value)
975997
} else {
976-
parent[key] = value
998+
Object.defineProperty(parent, key, {
999+
value,
1000+
writable: true,
1001+
enumerable: true,
1002+
configurable: true,
1003+
})
9771004
}
9781005
}
9791006

test/parse.js

+7
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,13 @@ t.test('parse(text)', t => {
4848
'parses escaped property names'
4949
)
5050

51+
t.strictSame(
52+
// eslint-disable-next-line no-proto
53+
JSON5.parse('{"__proto__":1}').__proto__,
54+
1,
55+
'preserves __proto__ property names'
56+
)
57+
5158
t.strictSame(
5259
JSON5.parse('{abc:1,def:2}'),
5360
{abc: 1, def: 2},

0 commit comments

Comments
 (0)