Improve readability
This commit is contained in:
parent
abddea0443
commit
0887580132
1 changed files with 2 additions and 14 deletions
|
@ -316,21 +316,9 @@ export default abstract class Chart<T> {
|
||||||
const res: ArrayValue<T> = {} as any;
|
const res: ArrayValue<T> = {} as any;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* [{
|
* [{ foo: 1, bar: 5 }, { foo: 2, bar: 6 }, { foo: 3, bar: 7 }]
|
||||||
* xxxxx: 1, yyyyy: 5
|
|
||||||
* }, {
|
|
||||||
* xxxxx: 2, yyyyy: 6
|
|
||||||
* }, {
|
|
||||||
* xxxxx: 3, yyyyy: 7
|
|
||||||
* }]
|
|
||||||
*
|
|
||||||
* を
|
* を
|
||||||
*
|
* { foo: [1, 2, 3], bar: [5, 6, 7] }
|
||||||
* {
|
|
||||||
* xxxxx: [1, 2, 3],
|
|
||||||
* yyyyy: [5, 6, 7]
|
|
||||||
* }
|
|
||||||
*
|
|
||||||
* にする
|
* にする
|
||||||
*/
|
*/
|
||||||
const dive = (x: Obj, path?: string) => {
|
const dive = (x: Obj, path?: string) => {
|
||||||
|
|
Loading…
Reference in a new issue