Skip to content

Commit

Permalink
undo npm build
Browse files Browse the repository at this point in the history
  • Loading branch information
brookesargent committed Apr 8, 2024
1 parent 1de4616 commit 201ced1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions dist/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -5793,7 +5793,7 @@ exports.stringify = function(data){
var needs_escaping = value.indexOf('"') > -1 || value.indexOf("\\") > -1;

if(needs_escaping) value = value.replace(/["\\]/g, '\\$&');
if(needs_quoting) value = '"' + value + '"';
if(needs_quoting || needs_escaping) value = '"' + value + '"';
if(value === '' && !is_null) value = '""';

line += key + '=' + value + ' ';
Expand Down Expand Up @@ -8216,4 +8216,4 @@ module.exports = require("util");
/******/ module.exports = __webpack_exports__;
/******/
/******/ })()
;
;

0 comments on commit 201ced1

Please sign in to comment.