(options)
| 209 | } |
| 210 | |
| 211 | function read(options) { |
| 212 | const stream = extract(options); |
| 213 | process.nextTick(() => stream.end()); |
| 214 | return stream; |
| 215 | } |
| 216 | |
| 217 | function normalizeTrailingColon(str, sourceStr = '') { |
| 218 | if (sourceStr.endsWith(': ') && str.endsWith(':')) { |