We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The config object returned by the parse function has no enumerable properties.
The following operations do not work:
console.log(config)
const newConfig = { ...config }
Object.keys(config)
Object.getOwnPropertyNames(config)
When the property is manually defined in the following manner, the converter functions stop working, i.e. 1m is not converted to 60 (seconds):
1m
Object.defineProperty(target, key, { enumerable: true, writable: true, value: source[key], }); target.__assignedProperties.add(key);
The text was updated successfully, but these errors were encountered:
#69 addressed symptoms of this bug.
Once the bug is fixed, some of the changes in that PR may be reverted.
Sorry, something went wrong.
Successfully merging a pull request may close this issue.
The config object returned by the parse function has no enumerable properties.
The following operations do not work:
console.log(config)
prints the empty object;const newConfig = { ...config }
creates an empty object;Object.keys(config)
andObject.getOwnPropertyNames(config)
don't return any values.When the property is manually defined in the following manner, the converter functions stop working, i.e.
1m
is not converted to 60 (seconds):The text was updated successfully, but these errors were encountered: