withNaming - default modifier's delimiter is undefined
Open
- Dominant language
- TypeScript
- Stars
- 450
- Forks
- 69
- PR merge metrics
- No merged PRs in 30d
Description
## Example
If I call it like this:
```js
const cn = withNaming({e: '__'});
```
```js
cn('bl')('el', { mod: 'val' });
// -> bl__elundefinedmodundefinedval
```
It only works if I explicitly specify the modifier
```js
withNaming({e: '__', m: '_'});
```
Contributor guide
Assessment
This issue has not been assessed yet.