Skip to content

Commit c37f743

Browse files
committed
Use 'use strict'; instead of "use strict";
1 parent 59de818 commit c37f743

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

app.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
"use strict";
1+
'use strict';
22

33
// Initialize New Relic Node.js agent
44

cluster.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
"use strict";
1+
'use strict';
22

33
// Cluster the application depends on the environment
44

modules/app.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
"use strict";
1+
'use strict';
22

33
/**
44
* Initialize the app

modules/homepage.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
"use strict";
1+
'use strict';
22

33
/**
44
* Serves the pages for the application

modules/pagenotfound.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
"use strict";
1+
'use strict';
22

33
/**
44
* Page not found function and handler for all routes which are not handled

newrelic.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
"use strict";
1+
'use strict';
22

33
// Configuration for the New Relic Node.js agent
44

0 commit comments

Comments
 (0)