alexa-voice-service
Version:
Alexa Voice Service wrapper for the browser.
27 lines (20 loc) • 754 B
JavaScript
;
var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; };
(function () {
'use strict';
var AVS = require('./lib/AVS');
if (typeof exports !== 'undefined') {
if (typeof module !== 'undefined' && module.exports) {
exports = module.exports = AVS;
}
exports.AVS = AVS;
}
if (typeof define === 'function' && define.amd) {
define([], function () {
return AVS;
});
}
if ((typeof window === 'undefined' ? 'undefined' : _typeof(window)) === 'object') {
window.AVS = AVS;
}
})();