properties
properties copied to clipboard
How to remove a property?
There is no way to remove a property from an existing PropertiesReader instance.
Workaround:
let properties = propertiesReader('input.properties');
//Note: after the line below, properties.length will reflect the new size (as expected).
delete properties._properties['property.to.remove'];