mustardscript 0.1.1 → 0.1.3
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 +3 -2
- package/package.json +5 -5
package/README.md
CHANGED
|
@@ -486,8 +486,9 @@ Current built-in helper support is intentionally conservative:
|
|
|
486
486
|
- `Date.now()`, `new Date(value).getTime()`, `Date.prototype.toISOString()`,
|
|
487
487
|
`Date.prototype.toJSON()`, and the documented UTC field accessors are
|
|
488
488
|
supported
|
|
489
|
-
- `Number.parseInt`, `Number.parseFloat`, `Number.isNaN`,
|
|
490
|
-
`Number.isFinite
|
|
489
|
+
- `Number.parseInt`, `Number.parseFloat`, `Number.isNaN`,
|
|
490
|
+
`Number.isFinite`, and the documented number formatting helpers are
|
|
491
|
+
supported
|
|
491
492
|
- `Intl.DateTimeFormat` and `Intl.NumberFormat` are available in a narrow
|
|
492
493
|
`en-US` / `UTC` subset with explicit fail-closed behavior for unsupported
|
|
493
494
|
locales and options
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "mustardscript",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.3",
|
|
4
4
|
"description": "Sandboxed, subset JavaScript runtime for Node services.",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "mustard.d.ts",
|
|
@@ -28,10 +28,10 @@
|
|
|
28
28
|
]
|
|
29
29
|
},
|
|
30
30
|
"optionalDependencies": {
|
|
31
|
-
"@mustardscript/binding-darwin-arm64": "0.1.
|
|
32
|
-
"@mustardscript/binding-darwin-x64": "0.1.
|
|
33
|
-
"@mustardscript/binding-linux-x64-gnu": "0.1.
|
|
34
|
-
"@mustardscript/binding-win32-x64-msvc": "0.1.
|
|
31
|
+
"@mustardscript/binding-darwin-arm64": "0.1.3",
|
|
32
|
+
"@mustardscript/binding-darwin-x64": "0.1.3",
|
|
33
|
+
"@mustardscript/binding-linux-x64-gnu": "0.1.3",
|
|
34
|
+
"@mustardscript/binding-win32-x64-msvc": "0.1.3"
|
|
35
35
|
},
|
|
36
36
|
"scripts": {
|
|
37
37
|
"prepack": "node scripts/build-ts-dist.ts",
|