UNPKG

@mikezimm/fps-library-v2

Version:

Library of reusable typescript/javascript functions, interfaces and constants

6 lines 227 B
export const lineFeedRegex = /\n/g; export function countLineFeeds(str) { const lineFeedCount = !str ? 0 : (str.match(lineFeedRegex) || []).length; return lineFeedCount; } //# sourceMappingURL=countLineFeeds.js.map