envapt 1.0.3 → 1.0.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1 -2
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -227,13 +227,12 @@ class Config extends Envapter {
|
|
|
227
227
|
- `'boolean'` - Boolean values (true/false, yes/no, on/off, 1/0)
|
|
228
228
|
- `'bigint'` - BigInt values for large integers
|
|
229
229
|
- `'symbol'` - Symbol values (creates symbols from string descriptions)
|
|
230
|
-
- `'time'` - Time values (converts "5s", "30m", "2h" to milliseconds)
|
|
231
230
|
- `'json'` - JSON objects/arrays (safe parsing with fallback)
|
|
232
231
|
- `'array'` - Comma-separated string arrays
|
|
233
232
|
- `'url'` - URL objects
|
|
234
233
|
- `'regexp'` - Regular expressions (supports `/pattern/flags` syntax)
|
|
235
234
|
- `'date'` - Date objects (supports ISO strings and timestamps)
|
|
236
|
-
- `'time'` -
|
|
235
|
+
- `'time'` - Time values (converts "5s", "30m", "2h" to milliseconds)
|
|
237
236
|
|
|
238
237
|
#### Custom Array Converters
|
|
239
238
|
|