encoding-tools 0.0.9 → 0.0.11
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/bin2txt +6 -1
- package/dist/bin2txt/bin2txt.js +1 -1
- package/dist/bin2txt/fs-worker.js +1 -1
- package/dist/encoding-tools/encoding-tools.js +1 -1
- package/dist/encoding-tools/fs-worker.js +1 -1
- package/dist/libbin2txt/fs-worker.js +1 -1
- package/dist/libbin2txt/libbin2txt.js +1 -1
- package/dist/libtxt2bin/fs-worker.js +1 -1
- package/dist/libtxt2bin/libtxt2bin.js +1 -1
- package/dist/txt2bin/fs-worker.js +1 -1
- package/dist/txt2bin/txt2bin.js +1 -1
- package/encoding-tools +5 -0
- package/libbin2txt +60 -39
- package/libtxt2bin +57 -4
- package/package.json +5 -3
- package/txt2bin +18 -5
package/bin2txt
CHANGED
|
@@ -272,7 +272,6 @@ function
|
|
|
272
272
|
"y";
|
|
273
273
|
_help_display =
|
|
274
274
|
false;
|
|
275
|
-
console.log(_argv);
|
|
276
275
|
if ( _argv[
|
|
277
276
|
"h"] ) {
|
|
278
277
|
_help_display =
|
|
@@ -321,6 +320,12 @@ function
|
|
|
321
320
|
in_file +
|
|
322
321
|
".base64";
|
|
323
322
|
}
|
|
323
|
+
else {
|
|
324
|
+
out_txt_prefix =
|
|
325
|
+
_argv[
|
|
326
|
+
"_"][
|
|
327
|
+
1];
|
|
328
|
+
}
|
|
324
329
|
if ( "L" in _argv ) {
|
|
325
330
|
string_length =
|
|
326
331
|
_argv[
|