hughsk / hughsk/flat

how to exclude the values

Open
#77 1 comment 0 reactions 0 assignees View on GitHub
Dominant language
JavaScript
Stars
1.8k
Forks
197
PR merge metrics
No merged PRs in 30d

Description

How to exclude unflattening the values of the key?

```
'files.exclude': {
default: { '**/.git': true, '**/.svn': true, '**/.hg': true, '**/CVS': true, '**/.DS_Store': true },
}
```

Output:
----
```
{ files: {
exclude: {
"default": Object {
"**/": Object {
"DS_Store": true,
"git": true,
"hg": true,
"svn": true,
},
"**/CVS": true,
}
}
}
```

Expectation
---
```
{ files: { exclude: { default: { '**/.git': true, '**/.svn': true, '**/.hg': true, '**/CVS': true, '**/.DS_Store': true }}}}
```

Contributor guide

No contributing guide indexed for this repository

Assessment

This issue has not been assessed yet.

Get new issues in your inbox

A short digest of beginner-friendly GitHub issues.