* @param {string} stringValue
(stringValue)
| 135 | * @param {string} stringValue |
| 136 | */ |
| 137 | function deindent(stringValue) { |
| 138 | return stringValue.slice(1).replace(/^\t+/gm, '').replace(/\s+$/gm, '').trim(); |
| 139 | } |
| 140 | |
| 141 | exports.deindent = deindent; |
| 142 |
no outgoing calls
no test coverage detected
searching dependent graphs…