mirror of
https://github.com/shelljs/shelljs.git
synced 2026-01-18 16:03:37 +00:00
6 lines
131 B
JavaScript
6 lines
131 B
JavaScript
function _numLines(str) {
|
|
return typeof str === 'string' ? (str.match(/\n/g)||[]).length+1 : 0;
|
|
}
|
|
|
|
exports.numLines = _numLines;
|