node-properties
node-properties copied to clipboard
.properties parser/stringifier.
Hi @gagle I just released a brand new package written in TypeScript that mimics exactly the Java behavior for `.properties.` files: https://www.npmjs.com/package/properties-files I see you haven't updated your npm package...
This was actually already done in this pull request: https://github.com/gagle/node-properties/pull/32 But it was never merged for some reason. I've checked and the types are all still up to date.
I would like to use the properties lib inside my typescript application. I convert my js file to typescript for this I wanted to remove/reduce js. Please provide a type...
I've been looking and trying like crazy, but I can't find an option to allow for value continuation in the following line by adding backslash `\` at the end of...
Hello, I have written code to convert a plain js object to a properties file, with support for nested objects and arrays. Its not perfect, but I feel that this...
Lists
This is more of question than and issue. Why did you choose not to support arrays of objects? ex. a: [5,4,3] From what I can tell that would have to...
[Here](https://github.com/gagle/node-properties/blob/master/lib/escape.js#L46) it is specifically set that any character in the [extended set (see bottom)](http://casa.colorado.edu/~ajsh/iso8859-1.html) is not encoded. These should actually be encoded, since otherwise Java would convert them and escape...
That is to say that if `x` is identified as numerical then the following check should also hold true - else the value should remain of type string: ``` String(...
I can see how the automatic casting of property values to JavaScript types might come in useful, but sometimes you really just want the literal value. For my use case:...