fc-nexmo-client1
Version:
Nexmo Client SDK for JavaScript
26 lines (22 loc) • 774 B
JavaScript
(function (root, factory) {
if (root === undefined && window !== undefined) root = window;
if (typeof define === 'function' && define.amd) {
// AMD. Register as an anonymous module unless amdModuleId is set
define('nexmo-client', [], function () {
return (root['NexmoClient'] = factory());
});
} else if (typeof module === 'object' && module.exports) {
// Node. Does not work with strict CommonJS, but
// only CommonJS-like environments that support module.exports,
// like Node.
module.exports = factory();
} else {
root['NexmoClient'] = factory();
}
}(this, function () {
;
let NexmoClient = global.NexmoClient || {};
NexmoClient = require('./sdk');
global.NexmoClient = NexmoClient;
return NexmoClient;
}));