UNPKG

gun-flint

Version:

Micro-framework for building Gun adapters

9 lines 177 B
module.exports = class KeyRing { constructor(base) { this.base = base; return this; } make(suffix) { return `${this.base}_${suffix}`; } }