UNPKG
@intenda/opus-ui-json-builder
Version:
latest (1.0.0)
1.0.0
0.3.0
0.2.0
0.1.0
Provides the `jsonBuilder` component type for use by Opus UI applications.
opus-ui.com
@intenda/opus-ui-json-builder
/
dist
/
components
/
jsonBuilder
/
helpers
/
getUpdatedJson.js
6 lines
•
175 B
JavaScript
View Raw
1
2
3
4
5
6
const
helper
= (
jsonLines, changeRowNumber, newValue
) => { jsonLines[changeRowNumber] = newValue;
const
json = jsonLines.
join
(
''
);
return
json; };
export
default
helper;