Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
doowb committed Mar 19, 2018
1 parent a706954 commit 9b4d450
Show file tree
Hide file tree
Showing 9 changed files with 191 additions and 214 deletions.
4 changes: 2 additions & 2 deletions examples/express.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,13 +14,13 @@ users.push({ name: 'tobi' });
users.push({ name: 'loki' });
users.push({ name: 'jane' });

app.get('/', function(req, res){
app.get('/', function(req, res) {
res.render('index', {
title: 'Consolidate.js'
});
});

app.get('/users', function(req, res){
app.get('/users', function(req, res) {
res.render('users', {
title: 'Users',
users: users
Expand Down
Loading

0 comments on commit 9b4d450

Please sign in to comment.