Skip to content

Commit

Permalink
chore(examples): add missing use strict directives (#234)
Browse files Browse the repository at this point in the history
  • Loading branch information
Fdawgs authored Oct 18, 2023
1 parent 8073670 commit 0da3888
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 0 deletions.
2 changes: 2 additions & 0 deletions examples/epic-games.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
'use strict'

const fastify = require('fastify')({ logger: { level: 'trace' } })

// const oauthPlugin = require('fastify-oauth2')
Expand Down
2 changes: 2 additions & 0 deletions examples/spotify.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
'use strict'

const fastify = require('fastify')({ logger: true })

// const oauthPlugin = require('fastify-oauth2')
Expand Down
2 changes: 2 additions & 0 deletions examples/vkontakte.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
'use strict'

const fastify = require('fastify')({ logger: { level: 'trace' } })

// const oauthPlugin = require('fastify-oauth2')
Expand Down

0 comments on commit 0da3888

Please sign in to comment.