funcity 0.7.0 → 0.9.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/dist/index.cjs CHANGED
@@ -1,11 +1,11 @@
1
1
  /*!
2
2
  * name: funcity
3
- * version: 0.7.0
3
+ * version: 0.9.0
4
4
  * description: A functional language interpreter with text processing
5
5
  * author: Kouji Matsui (@kekyo@mi.kekyo.net)
6
6
  * license: MIT
7
7
  * repository.url: https://github.com/kekyo/funcity
8
- * git.commit.hash: fc92f38c817d11189397d8e458b1d25db727f766
8
+ * git.commit.hash: 44d20b9861b32b8f70452b8a5bd2a39e3484ba26
9
9
  */
10
10
 
11
11
  "use strict";
@@ -2455,12 +2455,26 @@ const runScriptOnceToText = async (script, props, signal) => {
2455
2455
  };
2456
2456
  const objectVariables = Object.freeze({
2457
2457
  Object,
2458
+ Function,
2458
2459
  Array,
2459
2460
  String,
2460
2461
  Number,
2461
- Function,
2462
+ BigInt,
2463
+ Boolean,
2464
+ Symbol,
2462
2465
  Math,
2463
- Date
2466
+ ArrayBuffer,
2467
+ Date,
2468
+ Intl,
2469
+ JSON,
2470
+ Map,
2471
+ Set,
2472
+ Promise,
2473
+ RegExp,
2474
+ WeakMap,
2475
+ WeakSet,
2476
+ Reflect,
2477
+ Error
2464
2478
  });
2465
2479
  const getFetch = () => {
2466
2480
  const fetchFn = globalThis.fetch;