(text)
| 32 | } |
| 33 | |
| 34 | function dim (text) { |
| 35 | return supportsAnsi() ? `\x1b[2m${text}\x1b[0m` : text |
| 36 | } |
| 37 | |
| 38 | const LINE = /(?:^|^)\s*(?:export\s+)?([\w.-]+)(?:\s*=\s*?|:\s+?)(\s*'(?:\\'|[^'])*'|\s*"(?:\\"|[^"])*"|\s*`(?:\\`|[^`])*`|[^#\r\n]+)?\s*(?:#.*)?(?:$|$)/mg |
| 39 |
no test coverage detected