rewrite function assert in javascript
[liba.git] / quickjs / test / hpf.js
blobfe03e438867bc90ae9a8dd06545f7119f2c62d13
1 import * as a from "liba.so";
2 function assert(expr) {
3     if (!eval(expr)) {
4         throw Error(expr);
5     }
7 var ctx = new a.hpf(10, 0.01);
8 ctx.gen(10, 0.01);
9 ctx.iter(1);
10 assert("ctx.alpha != undefined");
11 assert("ctx.output != undefined");
12 assert("ctx.input != undefined");
13 var ctx = new a.hpf(0.1);
14 ctx.gen(0.1);
15 ctx.iter(1);
16 assert("ctx.alpha != undefined");
17 assert("ctx.output != undefined");
18 assert("ctx.input != undefined");
19 ctx.zero();