mirror of
https://kevinblog.sytes.net/Code/Jibo-Revival-Group/Zos.git
synced 2026-06-15 20:56:26 +00:00
15 lines
388 B
JavaScript
15 lines
388 B
JavaScript
require('./browser_loader');
|
|
|
|
var AWS = require('./core');
|
|
|
|
if (typeof window !== 'undefined') window.Jibo = AWS;
|
|
if (typeof module !== 'undefined') module.exports = AWS;
|
|
if (typeof self !== 'undefined') self.Jibo = AWS;
|
|
|
|
/**
|
|
* @private
|
|
* DO NOT REMOVE
|
|
* browser builder will strip out this line if services are supplied on the command line.
|
|
*/
|
|
require('../clients/browser_default');
|