Skip to content

Commit d0bd765

Browse files
committed
Removed single var pattern usage as discussed in https://github.com/flowjs/flow.js/pull/82/files#r34870980
1 parent 956af92 commit d0bd765

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/flow.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1305,8 +1305,8 @@
13051305
* @function
13061306
*/
13071307
send: function () {
1308-
var preprocess = this.flowObj.opts.preprocess,
1309-
read = this.flowObj.opts.read;
1308+
var preprocess = this.flowObj.opts.preprocess;
1309+
var read = this.flowObj.opts.read;
13101310
if (typeof preprocess === 'function') {
13111311
switch (this.preprocessState) {
13121312
case 0:

0 commit comments

Comments
 (0)