mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-01-06 22:40:14 -05:00
Classes must use strict mode
This commit is contained in:
parent
5319fd4e35
commit
329289a2b4
2 changed files with 3 additions and 0 deletions
|
@ -1,3 +1,4 @@
|
|||
'use strict';
|
||||
/**
|
||||
* An instance of router that is provided to Apps, to mount routes into.
|
||||
*/
|
||||
|
|
|
@ -1,3 +1,5 @@
|
|||
'use strict';
|
||||
|
||||
var expressRouter = require('express').Router;
|
||||
|
||||
class Router {
|
||||
|
|
Loading…
Reference in a new issue