indent-string
Advanced tools
Comparing version 0.1.1 to 0.1.2
@@ -9,5 +9,9 @@ 'use strict'; | ||
if (count != null && typeof count !== 'number') { | ||
throw new TypeError('`count` should be a number'); | ||
} | ||
indent = count > 1 ? repeatString(indent, count) : indent; | ||
return str.replace(/(?:^|\r\n|\n)(?=[^\s$])/g, '$&' + indent); | ||
return str.replace(/(?:^|\r?\n)(?=[\S$])/g, '$&' + indent); | ||
}; |
{ | ||
"name": "indent-string", | ||
"version": "0.1.1", | ||
"version": "0.1.2", | ||
"description": "Indent each line in 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
3195
53