sval 0.5.2 → 0.5.4
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 +8 -8
- package/dist/sval.es6.js +865 -608
- package/dist/sval.js +944 -626
- package/dist/sval.min.js +1 -1
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# Sval · [](https://www.npmjs.com/package/sval) [](https://www.npmjs.com/package/sval) [](https://coveralls.io/github/Siubaak/sval) [](https://makeapullrequest.com)
|
|
2
2
|
|
|
3
3
|
A JavaScript interpreter writen in JavaScript, based on parser [Acorn](https://github.com/acornjs/acorn).
|
|
4
4
|
|
|
@@ -133,16 +133,16 @@ moduleInterpreter.run(`
|
|
|
133
133
|
console.log(moduleInterpreter.exports.mod) // Get 'AllKindsOfStuffs'
|
|
134
134
|
```
|
|
135
135
|
|
|
136
|
-
##
|
|
136
|
+
## Reference
|
|
137
137
|
|
|
138
|
-
|
|
138
|
+
- [estree](https://github.com/estree/estree)
|
|
139
|
+
- [acorn](https://github.com/acornjs/acorn)
|
|
140
|
+
- [jsjs](https://github.com/bramblex/jsjs)
|
|
139
141
|
|
|
140
|
-
##
|
|
142
|
+
## Related
|
|
141
143
|
|
|
142
|
-
- [
|
|
143
|
-
- [Acorn](https://github.com/acornjs/acorn)
|
|
144
|
-
- [Jsjs](https://github.com/bramblex/jsjs)
|
|
144
|
+
- [sval-rhino-gs](https://github.com/Patrick-ring-motive/sval-rhino-gs)
|
|
145
145
|
|
|
146
146
|
## License
|
|
147
147
|
|
|
148
|
-
Sval is licensed under the [MIT](https://github.com/Siubaak/sval/blob/master/LICENSE).
|
|
148
|
+
Sval is licensed under the [MIT](https://github.com/Siubaak/sval/blob/master/LICENSE).
|