diff --git a/README.md b/README.md index a93c303..fb879f3 100644 --- a/README.md +++ b/README.md @@ -23,6 +23,9 @@ quantifies each query in a vacuum. npm i sqomplexity ``` +## Demo +https://bert-w.github.io/sqomplexity/ + ## Usage ### Execution in Node ```js diff --git a/examples/browser.html b/examples/browser.html index f4c11ef..f46413d 100644 --- a/examples/browser.html +++ b/examples/browser.html @@ -12,6 +12,8 @@ const result = await command.run(queries); + console.log(result); + // Result: [ 7.876953, 10.001953 ] })(); \ No newline at end of file diff --git a/examples/node.js b/examples/node.js index f9b548e..d07a879 100644 --- a/examples/node.js +++ b/examples/node.js @@ -12,5 +12,7 @@ import { Sqomplexity } from 'sqomplexity'; const result = await command.run(queries); + console.log(result); + // Result: [ 7.876953, 10.001953 ] })();