java-properties
java-properties copied to clipboard
Node module to read and interpolate Java .properties files
https://repl.it/@AndrewBradley/AlienatedNaturalRuntimelibrary Here's an example that fails to parse: ``` build.title=Build \#71 ``` JSON does not allow arbitrary characters to be escaped, so parsing `\#` fails.
When I read property param from java properties file like: `param = \\\\value` I get: \value The first escaped backslash is isgnored. Expected read result: \\\\value
Both `#` and `!` can be used for comments in property-files. Furthermore, comment marker need not be the first character of a line, but the first non-whitespace character. See [Properties.load()](https://docs.oracle.com/javase/8/docs/api/java/util/Properties.html#load-java.io.Reader-)...
Bumps [braces](https://github.com/micromatch/braces) from 3.0.2 to 3.0.3. Commits 74b2db2 3.0.3 88f1429 update eslint. lint, fix unit tests. 415d660 Snyk js braces 6838727 (#40) 190510f fix tests, skip 1 test in test/braces.expand...