From 62b1e5133ea58d96db90ea4c7f623c4442017ea8 Mon Sep 17 00:00:00 2001 From: Brian Helba Date: Wed, 22 Jan 2025 15:30:28 -0500 Subject: [PATCH] Remove unnecessary whitespace --- .github/workflows/tests.yml | 2 +- CHANGELOG.md | 2 +- lib/handlers/authorize-handler.js | 2 +- lib/token-types/bearer-token-type.js | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 07fe65d..bfc2c25 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -6,7 +6,7 @@ name: Tests on: push: branches: - - master # although master is push protected we still keep it + - master # although master is push protected we still keep it - development pull_request: # runs on all PR branches-ignore: diff --git a/CHANGELOG.md b/CHANGELOG.md index 79ef175..f97289b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -87,7 +87,7 @@ Please carefully consult the documentation while updating. * fix: Changed 'hasOwnProperty' call in Response * docs: Ensure accessTokenExpiresAt is required * docs: Add missing notice of breaking change for accessExpireLifetime to migration guide -* docs: Correct tokens time scale for 2.x to 3.x migration guide +* docs: Correct tokens time scale for 2.x to 3.x migration guide * readme: Update Slack badge and link * readme: Fix link to RFC6750 standard diff --git a/lib/handlers/authorize-handler.js b/lib/handlers/authorize-handler.js index 12ca72c..c44bcf8 100644 --- a/lib/handlers/authorize-handler.js +++ b/lib/handlers/authorize-handler.js @@ -35,7 +35,7 @@ const responseTypes = { * Constructor. */ -class AuthorizeHandler { +class AuthorizeHandler { constructor (options) { options = options || {}; diff --git a/lib/token-types/bearer-token-type.js b/lib/token-types/bearer-token-type.js index 02b7351..899f9a8 100644 --- a/lib/token-types/bearer-token-type.js +++ b/lib/token-types/bearer-token-type.js @@ -10,7 +10,7 @@ const InvalidArgumentError = require('../errors/invalid-argument-error'); * Constructor. */ -class BearerTokenType { +class BearerTokenType { constructor(accessToken, accessTokenLifetime, refreshToken, scope, customAttributes) { if (!accessToken) { throw new InvalidArgumentError('Missing parameter: `accessToken`');