biscuit-wasm 0.1.3

WebAssembly wrapper for Biscuit authorization tokens
Documentation
1
2
3
4
5
6
7
8
9
// cjs module used to import performance.now() in wasm to measure execution time
// this must replace for node the file distributed by biscuit-rust, because that one
// is an ESM
function performance_now() {
    return performance.now();
}

module.exports.performance_now = performance_now;