UNPKG

fc-nexmo-client1

Version:
19 lines (18 loc) 418 B
'use strict'; Object.defineProperty(exports, "__esModule", { value: true }); /* * Nexmo Client SDK * User Object Model * * Copyright (c) Nexmo Inc. */ const WildEmitter = require('wildemitter'); class User { constructor(application, params) { this.application = application; Object.assign(this, params); WildEmitter.mixin(User); } } exports.default = User; module.exports = User;