rewrite function assert in javascript
[liba.git] / quickjs / test / lpf.js
blobfd07bf00ca68b50165a49038a6afbb36062cd747
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.lpf(10, 0.01);
8 ctx.gen(10, 0.01);
9 ctx.iter(1);
10 assert("ctx.alpha != undefined");
11 assert("ctx.output != undefined");
12 var ctx = new a.lpf(0.1);
13 ctx.gen(0.1);
14 ctx.iter(1);
15 assert("ctx.alpha != undefined");
16 assert("ctx.output != undefined");
17 ctx.zero();