UNPKG

juno-api

Version:
24 lines (17 loc) 414 B
'use strict'; const assign = require('lodash/assign'); const base = require('../mixins/base'); /** * Create a Digital Account instance. * * @param {Juno} juno Reference to the Juno instance * @constructor * @public */ function DigitalAccount(juno) { this.juno = juno; this.name = 'digital-accounts'; this.key = ''; } assign(DigitalAccount.prototype, base); module.exports = DigitalAccount;