Skip to content

Commit

Permalink
Add 'use strict' to support node v5
Browse files Browse the repository at this point in the history
  • Loading branch information
patgrasso committed Aug 2, 2016
1 parent b8eb250 commit 2b5ddb8
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 0 deletions.
1 change: 1 addition & 0 deletions lib/rules.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
'use strict';

function Rule(lhs, rhs, valuator) {
let arr = [];
Expand Down
1 change: 1 addition & 0 deletions lib/tokenizer.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
'use strict';

module.exports = (sent, grammar) => {
let terms = grammar.reduce(
Expand Down
1 change: 1 addition & 0 deletions spec/rules-spec.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
/*global describe, it, expect, beforeAll*/
'use strict';

const Sym = require('../lib/rules').Sym;
const Rule = require('../lib/rules').Rule;
Expand Down

0 comments on commit 2b5ddb8

Please sign in to comment.