goldstein 3.2.0 → 3.2.1

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/ChangeLog CHANGED
@@ -1,3 +1,8 @@
1
+ 2023.04.19, v3.2.1
2
+
3
+ fix:
4
+ - fd137e5 parser: options
5
+
1
6
  2023.04.18, v3.2.0
2
7
 
3
8
  feature:
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "goldstein",
3
- "version": "3.2.0",
3
+ "version": "3.2.1",
4
4
  "type": "module",
5
5
  "author": "coderaiser <mnemonic.enemy@gmail.com> (https://github.com/coderaiser)",
6
6
  "description": "JavaScript with no limits",
@@ -27,7 +27,7 @@ const defaultKeywords = {
27
27
 
28
28
  export const keywords = defaultKeywords;
29
29
 
30
- export const parse = (source, keywords = defaultKeywords) => {
30
+ export const parse = (source, options, keywords = defaultKeywords) => {
31
31
  const {parse} = extendParser(Object.values(keywords));
32
32
  return parse(source);
33
33
  };