UNPKG

@hazae41/base58

Version:

Base58 adapter for WebAssembly and JS implementations

16 lines (12 loc) 267 B
'use strict'; var option = require('@hazae41/option'); let global = new option.None(); function get() { return global; } function set(value) { global = option.Option.wrap(value); } exports.get = get; exports.set = set; //# sourceMappingURL=adapter.cjs.map