UNPKG

219 BJavaScriptView Raw
1"use strict";
2
3function lineCounter(string) {
4 let lines = 1;
5
6 for (let i = 0; i < string.length; i++) {
7 if (string.charAt(i) === '\n') {
8 lines++;
9 }
10 }
11
12 return lines;
13}
14
15module.exports = lineCounter;
\No newline at end of file