Skip to content

Commit

Permalink
Using separate var statements in forms.js
Browse files Browse the repository at this point in the history
  • Loading branch information
ljharb committed Sep 25, 2014
1 parent 90f4ecf commit d28f837
Showing 1 changed file with 6 additions and 7 deletions.
13 changes: 6 additions & 7 deletions lib/forms.js
Original file line number Diff line number Diff line change
@@ -1,13 +1,12 @@
/*jslint node: true */
'use strict';

var async = require('async'),
is = require('is'),
http = require('http'),
querystring = require('qs'),
parse = require('url').parse,
formidable = require('formidable');

var async = require('async');
var is = require('is');
var http = require('http');
var querystring = require('qs');
var parse = require('url').parse;
var formidable = require('formidable');

exports.widgets = require('./widgets');
exports.fields = require('./fields');
Expand Down

0 comments on commit d28f837

Please sign in to comment.