Skip to content

Commit

Permalink
use strict mode
Browse files Browse the repository at this point in the history
  • Loading branch information
farhadi committed Jul 1, 2016
1 parent c9fb15f commit 0368f83
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 0 deletions.
2 changes: 2 additions & 0 deletions lib/pool.js
@@ -1,3 +1,5 @@
'use strict';

const EventEmitter = require('events').EventEmitter;
const Task = require('./task.js').Task;

Expand Down
2 changes: 2 additions & 0 deletions lib/task.js
@@ -1,3 +1,5 @@
'use strict';

const EventEmitter = require('events').EventEmitter;

class Task extends EventEmitter {
Expand Down
2 changes: 2 additions & 0 deletions test/pool.js
@@ -1,3 +1,5 @@
'use strict';

const assert = require('assert');
const Pool = require('../lib/pool.js').Pool;

Expand Down

0 comments on commit 0368f83

Please sign in to comment.