Skip to content

Instantly share code, notes, and snippets.

@parakhjain23
parakhjain23 / PluginFunctions.js
Last active February 1, 2024 12:28
Plugin Fucntions
// 1. Function to convert from old json to new json
export function convertToNewStructure(array: Array<InputFieldsType>, location: string = 'root') {
const result: NewJsonType = {
steps: {
[location]: []
},
blocks: {}
}
function processItem(item: InputFieldsType) {
item.key =