jscrambler 8.9.1 → 8.9.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +6 -0
- package/dist/index.js +3 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
package/dist/index.js
CHANGED
|
@@ -779,6 +779,9 @@ var _default = exports.default = {
|
|
|
779
779
|
if (typeof destCallback === 'function') {
|
|
780
780
|
destCallback(download, filesDest);
|
|
781
781
|
} else {
|
|
782
|
+
await _fs.default.promises.mkdir(filesDest, {
|
|
783
|
+
recursive: true
|
|
784
|
+
});
|
|
782
785
|
await _fs.default.promises.writeFile(_path.default.join(filesDest, "".concat(protectionId, "_symbolTable.json")), download);
|
|
783
786
|
}
|
|
784
787
|
},
|
package/package.json
CHANGED