@apocentre/bc-ur
Version:
A JS implementation of the Uniform Resources (UR) specification from Blockchain Commons
24 lines • 628 B
JavaScript
;
var __importDefault = (this && this.__importDefault) || function (mod) {
return (mod && mod.__esModule) ? mod : { "default": mod };
};
Object.defineProperty(exports, "__esModule", { value: true });
const xoshiro_1 = __importDefault(require("./xoshiro"));
(() => {
const rng = new xoshiro_1.default(Buffer.from('Wolf'));
console.log(`🚀 ~ rng`, rng);
rng.next();
rng.next();
rng.next();
rng.next();
rng.next();
rng.next();
rng.next();
rng.next();
rng.next();
rng.next();
rng.next();
rng.next();
rng.next();
})();
//# sourceMappingURL=deleteme.js.map