logd-console-output
Advanced tools
Comparing version 1.0.2 to 1.0.3
{ | ||
"name": "logd-console-output", | ||
"version": "1.0.2", | ||
"version": "1.0.3", | ||
"description": "console output for logd", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
@@ -46,3 +46,3 @@ 'use strict'; | ||
padRight(input, len = 5, char = ' ') { | ||
padRight(input = '', len = 5, char = ' ') { | ||
input = input+''; | ||
@@ -85,3 +85,3 @@ if (input.length < len) return input+char.repeat(len-input.length); | ||
*/ | ||
truncateLeft(input, len = 31) { | ||
truncateLeft(input = '', len = 31) { | ||
if (input.length > len) return '\u2026'+input.substr(input.length-len+1); | ||
@@ -98,3 +98,3 @@ return input; | ||
*/ | ||
truncatePath(path) { | ||
truncatePath(path = '') { | ||
@@ -101,0 +101,0 @@ // remove th eproject root |
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
57341