This is a proposal for a potential enhancement to the syntax. The short syntax is great; however, for those that need it, the verbose syntax would support: - Coercion - Validation - Alternative Key Name Example: ``` var toBoolean = require('truthy') var isBoolean = require('util').isBoolean module.exports = deo({ server: { cors: { default: true, coerce: toBoolean, check: isBoolean, key: 'CORS_ENABLED' } } }) ```
This is a proposal for a potential enhancement to the syntax.
The short syntax is great; however, for those that need it, the verbose syntax would support:
Example: