"use strict";
Object.defineProperty(exports, "__esModule", {
value: true,
});
exports.default = void 0;
const newline = /\r\n?|\n|\u2028|\u2029/g;
const countLines = (string) => (string.match(newline) || []).length + 1;
var _default = (exports.default = countLines);