Variable: clockSkew
October 7, 2024 ยท View on GitHub
Support from the community to continue maintaining and improving this module is welcome. If you find the module useful, please consider supporting the project by becoming a sponsor.
โข const clockSkew: unique symbol
Use to adjust the assumed current time. Positive and negative finite values representing seconds
are allowed. Default is 0 (Date.now() + 0 seconds is used).
Examples
When the local clock is mistakenly 1 hour in the past
let client: oauth.Client = {
client_id: 'abc4ba37-4ab8-49b5-99d4-9441ba35d428',
// ... other metadata
[oauth.clockSkew]: +(60 * 60),
}
When the local clock is mistakenly 1 hour in the future
let client: oauth.Client = {
client_id: 'abc4ba37-4ab8-49b5-99d4-9441ba35d428',
// ... other metadata
[oauth.clockSkew]: -(60 * 60),
}