Skip to content

Commit 6ca1aa1

Browse files
authored
Merge pull request #141 from pang0018/xmldom_update
Update xmlDom dependency to fix security issues
2 parents 7271d59 + 61b1c21 commit 6ca1aa1

File tree

10 files changed

+3294
-2923
lines changed

10 files changed

+3294
-2923
lines changed

dist/plist-build.js

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -119,6 +119,9 @@ function walk_obj(next, next_child) {
119119
tag_type = (next % 1 === 0) ? 'integer' : 'real';
120120
next_child.ele(tag_type).txt(next.toString());
121121

122+
} else if ('BigInt' == name) {
123+
next_child.ele('integer').txt(next);
124+
122125
} else if ('Date' == name) {
123126
next_child.ele('date').txt(ISODateString(new Date(next)));
124127

0 commit comments

Comments
 (0)