Skip to content

Commit

Permalink
Update xmlDom dependency to fix security issues
Browse files Browse the repository at this point in the history
  • Loading branch information
pang0018 committed Jul 5, 2023
1 parent 7271d59 commit d1c62e8
Show file tree
Hide file tree
Showing 10 changed files with 3,297 additions and 2,925 deletions.
3 changes: 3 additions & 0 deletions dist/plist-build.js
Original file line number Diff line number Diff line change
Expand Up @@ -119,6 +119,9 @@ function walk_obj(next, next_child) {
tag_type = (next % 1 === 0) ? 'integer' : 'real';
next_child.ele(tag_type).txt(next.toString());

} else if ('BigInt' == name) {
next_child.ele('integer').txt(next);

} else if ('Date' == name) {
next_child.ele('date').txt(ISODateString(new Date(next)));

Expand Down
Loading

0 comments on commit d1c62e8

Please sign in to comment.