We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 19aaef0 commit 19f63abCopy full SHA for 19f63ab
src/Credentials/index.ts
@@ -78,7 +78,7 @@ export class Credentials implements CredentialsContract {
78
79
private parse(obj?: Object, current?: string) {
80
const object = obj || JSON.parse(this.content)
81
- for (var key in object) {
+ for (const key in object) {
82
const value = object[key]
83
const newKey = current ? current + '_' + key : key
84
if (value && typeof value === 'object') {
0 commit comments