Skip to content
This repository was archived by the owner on Oct 4, 2020. It is now read-only.

Commit 44ea9da

Browse files
committed
fix build errors
1 parent 5ab0acd commit 44ea9da

File tree

2 files changed

+5
-6
lines changed

2 files changed

+5
-6
lines changed

src/DOM/File/Blob.js

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,12 @@ exports.typeImpl = function (blob) { return blob.type; };
44

55
exports.size = function (blob) { return blob.size; };
66

7-
exports._slice = function (contentType) {
7+
exports.slice = function (contentType) {
88
return function (start) {
99
return function (end) {
1010
return function (blob) {
1111
return blob.slice(start, end, contentType);
12-
}
13-
}
14-
}
15-
}
12+
};
13+
};
14+
};
15+
};

src/DOM/File/Blob.purs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@ import DOM.File.Types (Blob)
1414
import Data.Int (toNumber)
1515
import Data.Maybe (Maybe(..))
1616
import Data.MediaType (MediaType(..))
17-
import Data.Newtype (unwrap)
1817
import Math (round)
1918
import Prelude ((==), (>>>))
2019
import Unsafe.Coerce (unsafeCoerce)

0 commit comments

Comments
 (0)