Skip to content

Commit

Permalink
fix(Error): add missing 'use strict' pragma
Browse files Browse the repository at this point in the history
  • Loading branch information
michael-ciniawsky committed Dec 16, 2017
1 parent 67d80cf commit 1316255
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
language: node_js

node_js:
- node
- stable
- lts/*
- 6
- 4

Expand Down
2 changes: 2 additions & 0 deletions lib/Error.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
'use strict'

class LoaderError extends Error {
constructor(err) {
super(err);
Expand Down

0 comments on commit 1316255

Please sign in to comment.