nofiles.js 294 B

1234567891011121314151617
  1. function add(a, b) {
  2. 'use strict';
  3. return a + b;
  4. }
  5. function multiply(a, b) {
  6. 'use strict';
  7. return a * b;
  8. }
  9. function divide(a, b) {
  10. 'use strict';
  11. try {
  12. return multiply(add(a, b), a, b) / c;
  13. } catch (e) {
  14. Raven.captureException(e);
  15. }
  16. }
  17. //# sourceMappingURL=nofiles.js.map