isaacscript 3.6.56 → 3.6.57
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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "isaacscript",
|
|
3
|
-
"version": "3.6.
|
|
3
|
+
"version": "3.6.57",
|
|
4
4
|
"description": "A command line tool for managing Isaac mods written in TypeScript.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"isaac",
|
|
@@ -34,7 +34,7 @@
|
|
|
34
34
|
"jsonc-parser": "^3.2.0",
|
|
35
35
|
"klaw-sync": "^6.0.0",
|
|
36
36
|
"moment": "^2.29.4",
|
|
37
|
-
"npm-check-updates": "^16.
|
|
37
|
+
"npm-check-updates": "^16.11.1",
|
|
38
38
|
"prompt": "^1.3.0",
|
|
39
39
|
"source-map-support": "^0.5.21",
|
|
40
40
|
"sync-directory": "^6.0.4",
|
|
@@ -49,8 +49,8 @@ function isRecord(object) {
|
|
|
49
49
|
}
|
|
50
50
|
exports.isRecord = isRecord;
|
|
51
51
|
/**
|
|
52
|
-
* This is a more reliable version of `parseInt`. By default, `parseInt('1a')` will
|
|
53
|
-
* which is unexpected. This returns either an integer or NaN
|
|
52
|
+
* This is a more reliable version of `Number.parseInt`. By default, `Number.parseInt('1a')` will
|
|
53
|
+
* return "1", which is unexpected. This returns either an integer or `Number.NaN`.
|
|
54
54
|
*/
|
|
55
55
|
function parseIntSafe(input) {
|
|
56
56
|
if (typeof input !== "string") {
|