We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi I want to covert my ini file which looks like :
info.info1=ans1. info.info2=ans2. info3.info4=ans3. info5.info6=ans4.
to an object:
{ info:{ info1: ans1, info2:ans2 }, info3:{ info4:ans3 }, info5{ info6: ans4 } }
in the version 2.1.1 this was working by
const propertiesReader = require('properties-reader'); const properties = propertiesReader("relative path"); const obj = properties.path();
but now when I updated to the latest version 2.2.0 path is returning an empty object
path
in the latest version
const obj = properties.getAllProperties(); is working but i want a nested object
const obj = properties.getAllProperties();
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hi I want to covert my ini file which looks like :
info.info1=ans1.
info.info2=ans2.
info3.info4=ans3.
info5.info6=ans4.
to an object:
{ info:{ info1: ans1, info2:ans2 }, info3:{ info4:ans3 }, info5{ info6: ans4 } }
in the version 2.1.1 this was working by
const propertiesReader = require('properties-reader'); const properties = propertiesReader("relative path"); const obj = properties.path();
but now when I updated to the latest version 2.2.0
path
is returning an empty objectin the latest version
const obj = properties.getAllProperties();
is working but i want a nested object
The text was updated successfully, but these errors were encountered: