Skip to content

Commit 5f72426

Browse files
Merge pull request #13 from nikuda/webcrypto
Using string instead of buffer for proto file
2 parents d4f1a4f + 089b7a4 commit 5f72426

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/unixfs.proto.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
'use strict'
22

3-
module.exports = new Buffer(`message Data {
3+
module.exports = `message Data {
44
enum DataType {
55
Raw = 0;
66
Directory = 1;
@@ -18,4 +18,4 @@ module.exports = new Buffer(`message Data {
1818
message Metadata {
1919
required string MimeType = 1;
2020
}
21-
`)
21+
`

0 commit comments

Comments
 (0)