SubhenduShekhar / cjson

CJSON is a data file format(inspired from JSON), but supports logical expressions too. Having extended language support to NodeJS, Python, Java and DotNet, users has experienced data reusability. For features and examples, please refer to this documentation as base document.
https://subhendushekhar.github.io/cjson/
MIT License
3 stars 1 forks source link

Appending content in existing data using `inject` #73

Open SubhenduShekhar opened 1 year ago

SubhenduShekhar commented 1 year ago

Scenario

{
    "DataKey": "<base> world"
}

Implementation

cJson.inject(Data.class, "base", "hello");

Result

{
    "DataKey": "hello world"
}
kesrishubham2510 commented 7 months ago

is this done or still needs to be picked up ?

SubhenduShekhar commented 6 months ago

I have already taken this.