Skip to content

Commit 1316255

Browse files
fix(Error): add missing 'use strict' pragma
1 parent 67d80cf commit 1316255

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

.travis.yml

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
language: node_js
22

33
node_js:
4-
- node
4+
- stable
5+
- lts/*
56
- 6
67
- 4
78

lib/Error.js

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
'use strict'
2+
13
class LoaderError extends Error {
24
constructor(err) {
35
super(err);

0 commit comments

Comments
 (0)