Skip to content

Commit

Permalink
style: format source code
Browse files Browse the repository at this point in the history
  • Loading branch information
thetutlage committed Jun 5, 2024
1 parent 76818f9 commit b4304c6
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/stores/file.ts
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ export class FileStore implements SessionStoreContract {
/**
* Check if the file has been expired and return null (if expired)
*/
const sessionWillExpireAt = stats.mtimeMs + (string.seconds.parse(this.#age) * 1000)
const sessionWillExpireAt = stats.mtimeMs + string.seconds.parse(this.#age) * 1000
if (Date.now() > sessionWillExpireAt) {
debug('file store: expired session data %s', sessionId)
return null
Expand Down
4 changes: 2 additions & 2 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@
"extends": "@adonisjs/tsconfig/tsconfig.package.json",
"compilerOptions": {
"rootDir": "./",
"outDir": "./build",
},
"outDir": "./build"
}
}

0 comments on commit b4304c6

Please sign in to comment.