-
Notifications
You must be signed in to change notification settings - Fork 14
Open
Description
It looks like this module cannot to convert the data as string[]? Otherwise am I just miss something?
let's say I have some data like this:
let data = [
{
id: 1,
foo: 'foo'
},
{
id: 1,
foo: 'bar'
},
{
id: 2,
foo: 'baz'
}
]my question is how to make a definition so that it can be used to convert the data like this below.
[
{
id: 1,
foo: ['foo', 'bar']
},
{
id: 2,
foo: ['baz']
}
]
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels