Socket
Socket
Sign inDemoInstall

indent-string

Package Overview
Dependencies
Maintainers
1
Versions
16
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

indent-string - npm Package Compare versions

Comparing version 0.1.1 to 0.1.2

6

index.js

@@ -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);
};

2

package.json
{
"name": "indent-string",
"version": "0.1.1",
"version": "0.1.2",
"description": "Indent each line in a string",

@@ -5,0 +5,0 @@ "license": "MIT",

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc