File tree Expand file tree Collapse file tree 2 files changed +2
-4
lines changed Expand file tree Collapse file tree 2 files changed +2
-4
lines changed Original file line number Diff line number Diff line change @@ -13,7 +13,6 @@ exports.writeInternal = function (ty) {
13
13
return function ( buf ) {
14
14
return function ( ) {
15
15
buf [ "write" + ty ] ( value , offset ) ;
16
- return { } ;
17
16
} ;
18
17
} ;
19
18
} ;
@@ -39,7 +38,6 @@ exports.setAtOffset = function (value) {
39
38
return function ( buff ) {
40
39
return function ( ) {
41
40
buff [ offset ] = value ;
42
- return { } ;
43
41
} ;
44
42
} ;
45
43
} ;
@@ -65,7 +63,6 @@ exports.fill = function (octet) {
65
63
return function ( buf ) {
66
64
return function ( ) {
67
65
buf . fill ( octet , start , end ) ;
68
- return { } ;
69
66
} ;
70
67
} ;
71
68
} ;
Original file line number Diff line number Diff line change @@ -23,7 +23,8 @@ module Node.Buffer.Internal
23
23
, concat
24
24
, concat'
25
25
, copy
26
- , fill ) where
26
+ , fill
27
+ ) where
27
28
28
29
import Prelude
29
30
You can’t perform that action at this time.
0 commit comments