indenting in frontend.bundle.js

This commit is contained in:
Abhinav Adduri 2017-07-13 08:59:35 -07:00
parent 91cc82d570
commit 5dd5743871

View File

@ -1,14 +1,14 @@
class FakeFile extends Blob { class FakeFile extends Blob {
constructor(name, data, opt) { constructor(name, data, opt) {
super(data, opt); super(data, opt);
this.name = name; this.name = name;
} }
} }
window.Raven = { window.Raven = {
captureException: function(err) { captureException: function(err) {
console.error(err, err.stack); console.error(err, err.stack);
} }
} }
window.FakeFile = FakeFile; window.FakeFile = FakeFile;