sweet-data
Advanced tools
Comparing version 0.0.4 to 0.0.5
{ | ||
"name": "sweet-data", | ||
"version": "0.0.4", | ||
"version": "0.0.5", | ||
"author": "Vadim Kiryukhin <vkiryukhin@gmail.com>", | ||
@@ -5,0 +5,0 @@ "description": "plugin to pretty-print or minify XML, JSON, CSS and SQL files, fork of pretty-data by Vadim Kiryukhin <vkiryukhin@gmail.com>", |
@@ -1,2 +0,4 @@ | ||
function pp(steps = 2, stepChar = ' ') { | ||
function pp(steps, stepChar) { | ||
steps = typeof steps !== 'undefined' ? steps : 2; | ||
stepChar = typeof stepChar !== 'undefined' ? stepChar : ' '; | ||
this.setStep(steps, stepChar); | ||
@@ -3,0 +5,0 @@ }; |
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
15468
297