Merge pull request #489 from tejasmanohar/blank_newline_at_top

ensure all JS files have blank newline at top/bot
This commit is contained in:
TJ Holowaychuk 2015-10-06 09:21:40 -07:00
commit 65b59a9509
4 changed files with 4 additions and 1 deletions

View File

@ -1,3 +1,4 @@
// support async await by babel
require('babel/register')({
optional: ['asyncToGenerator']

View File

@ -1,3 +1,4 @@
/**
* Module dependencies.
*/

View File

@ -1,3 +1,4 @@
require('babel/register')({
optional: ['asyncToGenerator']
});

View File

@ -37,4 +37,4 @@ describe('ctx.acceptsEncodings()', function(){
ctx.acceptsEncodings(['compress', 'gzip']).should.eql('gzip');
})
})
})
})