We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e6a8786 commit bee0b99Copy full SHA for bee0b99
src/Node/Buffer/Internal.js
@@ -13,7 +13,6 @@ exports.writeInternal = function (ty) {
13
return function (buf) {
14
return function () {
15
buf["write" + ty](value, offset);
16
- return {};
17
};
18
19
@@ -39,7 +38,6 @@ exports.setAtOffset = function (value) {
39
38
return function (buff) {
40
41
buff[offset] = value;
42
43
44
45
@@ -65,7 +63,6 @@ exports.fill = function (octet) {
65
63
66
64
67
buf.fill(octet, start, end);
68
69
70
71
src/Node/Buffer/Internal.purs
@@ -23,7 +23,8 @@ module Node.Buffer.Internal
23
, concat
24
, concat'
25
, copy
26
- , fill ) where
+ , fill
27
+ ) where
28
29
import Prelude
30
0 commit comments