crash-js 0.1.54 → 0.1.55
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/crash-js/utils +13 -12
- package/package.json +1 -1
package/crash-js/utils
CHANGED
|
@@ -21,18 +21,6 @@
|
|
|
21
21
|
// You should have received a copy of the GNU Affero General Public License
|
|
22
22
|
// along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
23
23
|
|
|
24
|
-
const
|
|
25
|
-
_yargs_module =
|
|
26
|
-
require(
|
|
27
|
-
"yargs");
|
|
28
|
-
_yargs =
|
|
29
|
-
_yargs_module.yargs;
|
|
30
|
-
const
|
|
31
|
-
_yargs_helpers_module =
|
|
32
|
-
require(
|
|
33
|
-
"yargs/helpers");
|
|
34
|
-
_hide_bin =
|
|
35
|
-
_yargs_helpers_module.hideBin;
|
|
36
24
|
|
|
37
25
|
|
|
38
26
|
function
|
|
@@ -114,7 +102,20 @@ function
|
|
|
114
102
|
_yargv_get() {
|
|
115
103
|
let
|
|
116
104
|
_argv,
|
|
105
|
+
_hide_bin,
|
|
106
|
+
_yargs,
|
|
107
|
+
_yargs_module,
|
|
117
108
|
_yargs_object;
|
|
109
|
+
_yargs_module =
|
|
110
|
+
require(
|
|
111
|
+
"yargs");
|
|
112
|
+
_yargs =
|
|
113
|
+
_yargs_module.yargs;
|
|
114
|
+
_yargs_helpers_module =
|
|
115
|
+
require(
|
|
116
|
+
"yargs/helpers");
|
|
117
|
+
_hide_bin =
|
|
118
|
+
_yargs_helpers_module.hideBin;
|
|
118
119
|
_yargs_object =
|
|
119
120
|
_yargs(
|
|
120
121
|
_hide_bin(
|