mirror of
https://github.com/qlik-oss/nebula.js.git
synced 2026-05-25 01:00:13 -04:00
12 lines
320 B
JavaScript
12 lines
320 B
JavaScript
/* eslint-disable import/prefer-default-export */
|
|
export function createGenericObject(visualization, config = {}) {
|
|
return {
|
|
...config,
|
|
getLayout: {
|
|
qInfo: { qId: +Date.now() },
|
|
visualization,
|
|
...(typeof config.getLayout === 'function' ? config.getLayout() : config.getLayout),
|
|
},
|
|
};
|
|
}
|