git-off

Log

Files

Refs

README

browser.js (385B)

     1 require('./browser_loader');
     2 
     3 var AWS = require('./core');
     4 
     5 if (typeof window !== 'undefined') window.AWS = AWS;
     6 if (typeof module !== 'undefined') module.exports = AWS;
     7 if (typeof self !== 'undefined') self.AWS = AWS;
     8 
     9 /**
    10  * @private
    11  * DO NOT REMOVE
    12  * browser builder will strip out this line if services are supplied on the command line.
    13  */
    14 ```