(draft; work in progress)
See also:
- Compilers
- Program analysis:
- Dynamic analysis - instrumentation, translation, sanitizers
const bip39 = require("bip39") | |
const bip32 = require("bip32") | |
const slip77 = require("slip77") | |
const liquid = require('liquidjs-lib') | |
const regtest = liquid.networks.regtest | |
try { | |
const mnemonic = bip39.generateMnemonic() | |
const seed = await bip39.mnemonicToSeed(mnemonic) |
(draft; work in progress)
See also:
var Benchmark = require('benchmark'); | |
Benchmark.prototype.setup = function() { | |
a = ["test"]; | |
for (var i = 0; i < 10000; i++) { | |
a.push("some other stuff"); | |
} | |
s = a.join(); | |
re1 = new RegExp("^test"); | |
re2 = new RegExp("^not there"); | |
}; |