Skip to content

Commit

Permalink
Merge pull request #141 from pang0018/xmldom_update
Browse files Browse the repository at this point in the history
Update xmlDom dependency to fix security issues
  • Loading branch information
mreinstein committed Jul 6, 2023
2 parents 7271d59 + 61b1c21 commit 6ca1aa1
Show file tree
Hide file tree
Showing 10 changed files with 3,294 additions and 2,923 deletions.
3 changes: 3 additions & 0 deletions dist/plist-build.js
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

0 comments on commit 6ca1aa1

Please sign in to comment.