1234567891011121314151617 |
- function add(a, b) {
- 'use strict';
- return a + b;
- }
- function multiply(a, b) {
- 'use strict';
- return a * b;
- }
- function divide(a, b) {
- 'use strict';
- try {
- return multiply(add(a, b), a, b) / c;
- } catch (e) {
- Raven.captureException(e);
- }
- }
- //# sourceMappingURL=nofiles.js.map
|