Source: vox.js

  1. "use strict";
  2. /**
  3. * @namespace
  4. */
  5. var vox = {};
  6. (function() {
  7. if (typeof(window) !== "undefined") {
  8. vox.global = window;
  9. vox.global.vox = vox;
  10. } else {
  11. vox.global = global;
  12. }
  13. if (typeof(module) !== "undefined") {
  14. module.exports = vox;
  15. }
  16. })();