eyereasoner 1.2.0 → 1.3.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/README.md CHANGED
@@ -1,5 +1,5 @@
1
1
  # EYE JS
2
- Distributing the [EYE](https://github.com/josd/eye) reasoner for browser and node using WebAssembly.
2
+ Distributing the [EYE](https://github.com/eyereasoner/eye) reasoner for browser and node using WebAssembly.
3
3
 
4
4
  [![GitHub license](https://img.shields.io/github/license/eyereasoner/eye-js.svg)](https://github.com/eyereasoner/eye-js/blob/master/LICENSE)
5
5
  [![npm version](https://img.shields.io/npm/v/eyereasoner.svg)](https://www.npmjs.com/package/eyereasoner)
@@ -120,8 +120,8 @@ async function main() {
120
120
  Module.FS.writeFile('data.n3', data);
121
121
  Module.FS.writeFile('query.n3', query);
122
122
 
123
- // Execute main(['--quiet', './data.n3', '--query', './query.n3']).
124
- queryOnce(Module, 'main', ['--quiet', './data.n3', '--query', './query.n3']);
123
+ // Execute main(['--nope', '--quiet', './data.n3', '--query', './query.n3']).
124
+ queryOnce(Module, 'main', ['--nope', '--quiet', './data.n3', '--query', './query.n3']);
125
125
  }
126
126
 
127
127
  main();