@falsejs/falsejs 3.0.0 → 3.1.0
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/README.md +0 -5
- package/biome.json +4 -3
- package/dist/index.js +1842 -35
- package/dist/index.js.map +1 -1
- package/package.json +3 -11
package/README.md
CHANGED
|
@@ -238,8 +238,3 @@ This is normal. Do not worry. FalseJS uses a package called `get-member` that ad
|
|
|
238
238
|
FalseJS uses the MIT license.
|
|
239
239
|
|
|
240
240
|
## made with HEAVY BLACK HEART U+2764
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
Making this was very hard, but I was dedicated and now there's a 3000-line long library just to return false. Please help me. Please.
|
package/biome.json
CHANGED
|
@@ -21,7 +21,8 @@
|
|
|
21
21
|
"recommended": true,
|
|
22
22
|
"suspicious": {
|
|
23
23
|
"noDoubleEquals": "off",
|
|
24
|
-
"noSelfCompare": "off"
|
|
24
|
+
"noSelfCompare": "off",
|
|
25
|
+
"noExplicitAny": "off"
|
|
25
26
|
},
|
|
26
27
|
"complexity": {
|
|
27
28
|
"useArrowFunction": "off"
|
|
@@ -53,8 +54,8 @@
|
|
|
53
54
|
"files": {
|
|
54
55
|
"includes": [
|
|
55
56
|
"**",
|
|
56
|
-
"!dist
|
|
57
|
-
"!node_modules
|
|
57
|
+
"!dist",
|
|
58
|
+
"!node_modules"
|
|
58
59
|
],
|
|
59
60
|
"ignoreUnknown": false
|
|
60
61
|
}
|