logd-console-output
Advanced tools
Comparing version 1.0.4 to 1.0.5
{ | ||
"name": "logd-console-output", | ||
"version": "1.0.4", | ||
"version": "1.0.5", | ||
"description": "console output for logd", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
@@ -24,2 +24,3 @@ 'use strict'; | ||
label, | ||
optios, | ||
}) { | ||
@@ -32,3 +33,6 @@ context.renderDecoration({label, decoration: `[Array] (${value.length}): [`}); | ||
context.newLine(); | ||
context.renderValue({value, decoration: `${index}`}); | ||
context.renderValue({ | ||
value, decoration: `${index}`, | ||
optios, | ||
}); | ||
}); | ||
@@ -35,0 +39,0 @@ context.out(); |
@@ -25,2 +25,3 @@ 'use strict'; | ||
decoration, | ||
optios, | ||
}) { | ||
@@ -36,2 +37,3 @@ context.renderDecoration({label, decoration: `${decoration ? decoration+' ' : ''}[Map] (${value.size}): {`}); | ||
label: key, | ||
optios, | ||
}); | ||
@@ -38,0 +40,0 @@ } |
@@ -25,2 +25,3 @@ 'use strict'; | ||
decoration, | ||
optios, | ||
}) { | ||
@@ -37,2 +38,3 @@ const keys = Object.keys(value); | ||
label: key, | ||
optios, | ||
}); | ||
@@ -39,0 +41,0 @@ }); |
@@ -24,2 +24,3 @@ 'use strict'; | ||
label, | ||
optios, | ||
}) { | ||
@@ -36,3 +37,4 @@ context.renderDecoration({label, decoration: `[Set] (${value.size}): [`}); | ||
value: item, | ||
decoration: `${index}` | ||
decoration: `${index}`, | ||
optios, | ||
}); | ||
@@ -39,0 +41,0 @@ index++; |
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
57414
1656
35