2
1
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2023-12-13 21:00:40 +01:00

Classes must use strict mode

This commit is contained in:
Hannah Wolfe 2017-11-01 15:55:06 +00:00
parent 5319fd4e35
commit 329289a2b4
2 changed files with 3 additions and 0 deletions

View file

@ -1,3 +1,4 @@
'use strict';
/** /**
* An instance of router that is provided to Apps, to mount routes into. * An instance of router that is provided to Apps, to mount routes into.
*/ */

View file

@ -1,3 +1,5 @@
'use strict';
var expressRouter = require('express').Router; var expressRouter = require('express').Router;
class Router { class Router {