7 lines
105 B
JavaScript
7 lines
105 B
JavaScript
|
|
|
|
export const getPathDataExample = (obj, n = 10) => Array.from({ length: n }, (_, i) => ({...obj}))
|
|
|
|
|
|
|