Package Exports
- java-properties
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (java-properties) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
java-properties
Reads and interpolates Java .properties files
Getting Started
Install the module with: npm install java-properties
Documentation
var properties = require('java-properties');
var values = properties.of('values.properties');
//Read a value from the properties file
values.get('a.key'); //returns value of a.key
//Add an additional file's properties
values.add('anotherfile.properties');
//Clear out all values
values.reset();Contributing
In lieu of a formal styleguide, take care to maintain the existing coding style. Add unit tests for any new or changed functionality. Lint and test your code using Grunt.
License
Licensed under the MIT license.