Hi, thanks for this library! I'm using it to parse Spring-like properties files.
Given a properties file with no header and a dot-separated value:
In 2.1.1 I used to be able to do:
const propertiesReader = require("properties-reader");
const properties = propertiesReader("test.properties");
properties.path()
This would give an object: { testkey: { nested: 'testval' } }
In 2.2.0, path() here returns: {}