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.
fill
1 parent bdf5951 commit d098fd9Copy full SHA for d098fd9
src/Node/Buffer.js
@@ -151,14 +151,14 @@ exports.copy = function (srcStart) {
151
};
152
153
154
-exports.fill = function (buff) {
155
- return function (octet) {
156
- return function (start) {
157
- return function (end) {
+exports.fill = function (octet) {
+ return function (start) {
+ return function (end) {
+ return function (buf) {
158
return function() {
159
- buff.fill(octet, start, end);
+ buf.fill(octet, start, end);
160
return {};
161
- }
+ };
162
163
164
0 commit comments