(value, options)
| 22 | ); |
| 23 | |
| 24 | function adjustStrings(value, options) { |
| 25 | return value.replaceAll(STRING_REGEX, (match) => printString(match, options)); |
| 26 | } |
| 27 | |
| 28 | function quoteAttributeValue(value, options) { |
| 29 | const quote = options.singleQuote ? "'" : '"'; |
no test coverage detected
searching dependent graphs…