bare-script 3.0.13 → 3.0.14
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/lib/value.js +6 -6
- package/package.json +1 -1
package/lib/value.js
CHANGED
|
@@ -390,25 +390,25 @@ struct FunctionArgument
|
|
|
390
390
|
optional bool nullable
|
|
391
391
|
|
|
392
392
|
# The default argument value
|
|
393
|
-
optional
|
|
393
|
+
optional any default
|
|
394
394
|
|
|
395
395
|
# If true, this argument is the array of remaining arguments
|
|
396
|
-
optional
|
|
396
|
+
optional bool lastArgArray
|
|
397
397
|
|
|
398
398
|
# If true, the number argument must be an integer
|
|
399
399
|
optional bool integer
|
|
400
400
|
|
|
401
401
|
# The number argument must be less-than
|
|
402
|
-
optional
|
|
402
|
+
optional any lt
|
|
403
403
|
|
|
404
404
|
# The number argument must be less-than-or-equal-to
|
|
405
|
-
optional
|
|
405
|
+
optional any lte
|
|
406
406
|
|
|
407
407
|
# The number argument must be greater-than
|
|
408
|
-
optional
|
|
408
|
+
optional any gt
|
|
409
409
|
|
|
410
410
|
# The number argument must be greater-than-or-equal-to
|
|
411
|
-
optional
|
|
411
|
+
optional any gte
|
|
412
412
|
|
|
413
413
|
|
|
414
414
|
# The function argument types
|