detect-newline
Advanced tools
Comparing version 1.0.1 to 1.0.2
@@ -7,3 +7,3 @@ 'use strict'; | ||
var newlines = (str.match(/(?:\r?\n)+/g) || []); | ||
var newlines = (str.match(/(?:\r?\n)/g) || []); | ||
var crlf = newlines.filter(function (el) { return el === '\r\n'; }).length; | ||
@@ -10,0 +10,0 @@ var lf = newlines.length - crlf; |
{ | ||
"name": "detect-newline", | ||
"version": "1.0.1", | ||
"version": "1.0.2", | ||
"description": "Detect the dominant newline character of a string", | ||
@@ -5,0 +5,0 @@ "license": "MIT", |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
2564