* Detect the dominant newline character of a string * @param {String} text * @return {String}
(text)
| 8 | * @return {String} |
| 9 | */ |
| 10 | function getNewLine(text) { |
| 11 | return detectNewline(text) || DEFAULT; |
| 12 | } |
| 13 | |
| 14 | module.exports = getNewLine; |
no outgoing calls
no test coverage detected