Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

logd-console-output

Package Overview
Dependencies
Maintainers
1
Versions
17
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

logd-console-output - npm Package Compare versions

Comparing version 1.0.2 to 1.0.3

2

package.json
{
"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

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