File tree Expand file tree Collapse file tree 3 files changed +7
-5
lines changed Expand file tree Collapse file tree 3 files changed +7
-5
lines changed Original file line number Diff line number Diff line change 1
- import debugF from 'debug' ;
1
+ import debugg from 'debug' ;
2
2
3
- const debug = debugF ( 'simple-oauth2:access-token' ) ;
3
+ const debug = debugg ( 'simple-oauth2:access-token' ) ;
4
4
5
5
const EXPIRES_AT_PROPERTY_NAME = 'expires_at' ;
6
6
const EXPIRES_IN_PROPERTY_NAME = 'expires_in' ;
Original file line number Diff line number Diff line change 1
1
import Hoek from '@hapi/hoek' ;
2
2
import Wreck from '@hapi/wreck' ;
3
- import debugF from 'debug' ;
3
+ import debugg from 'debug' ;
4
4
import { RequestOptions } from './request-options.js' ;
5
5
6
- const debug = debugF ( 'simple-oauth2:client' ) ;
6
+ const debug = debugg ( 'simple-oauth2:client' ) ;
7
7
8
8
const defaultHttpHeaders = {
9
9
Accept : 'application/json' ,
Original file line number Diff line number Diff line change 1
1
import Hoek from '@hapi/hoek' ;
2
2
import querystring from 'querystring' ;
3
- import debug from 'debug' ;
3
+ import debugg from 'debug' ;
4
4
import { CredentialsEncoding } from './credentials-encoding.js' ;
5
5
6
+ const debug = debugg ( 'simple-oauth2:request-options' ) ;
7
+
6
8
const JSON_CONTENT_TYPE = 'application/json' ;
7
9
const FORM_CONTENT_TYPE = 'application/x-www-form-urlencoded' ;
8
10
You can’t perform that action at this time.
0 commit comments