Skip to content

Commit

Permalink
lets speed things up and prepare for ecma6
Browse files Browse the repository at this point in the history
  • Loading branch information
dotnetCarpenter committed May 13, 2015
1 parent 1b49d5d commit 4356c6e
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 0 deletions.
2 changes: 2 additions & 0 deletions lib/ecstatic.js
@@ -1,5 +1,7 @@
#! /usr/bin/env node

'use strict';

var path = require('path'),
fs = require('fs'),
url = require('url'),
Expand Down
2 changes: 2 additions & 0 deletions lib/ecstatic/opts.js
@@ -1,5 +1,7 @@
// This is so you can have options aliasing and defaults in one place.

'use strict';

module.exports = function (opts) {

var autoIndex = true,
Expand Down
2 changes: 2 additions & 0 deletions lib/ecstatic/showdir.js
@@ -1,3 +1,5 @@
'use strict';

var ecstatic = require('../ecstatic'),
fs = require('fs'),
path = require('path'),
Expand Down
2 changes: 2 additions & 0 deletions lib/ecstatic/status-handlers.js
@@ -1,3 +1,5 @@
'use strict';

// not modified
exports['304'] = function (res, next) {
res.statusCode = 304;
Expand Down

0 comments on commit 4356c6e

Please sign in to comment.