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

lme

Package Overview
Dependencies
Maintainers
1
Versions
23
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

lme - npm Package Compare versions

Comparing version 1.5.0 to 1.5.1

2

package.json
{
"name": "lme",
"version": "1.5.0",
"version": "1.5.1",
"description": "Simply and beautifully log to console.",

@@ -5,0 +5,0 @@ "main": "index.js",

@@ -21,5 +21,7 @@ [![Build Status](https://travis-ci.org/vajahath/lme.svg?branch=master)](https://travis-ci.org/vajahath/lme)

> **-** Multiple argumnets support: _`lme.s("hi", "hello")`_ <br>
> **-** Stability and performance improvements.
> **-** Stability, performance improvements and Bug fixes.
## Why `lme` *( logme )*
[![Greenkeeper badge](https://badges.greenkeeper.io/vajahath/lme.svg)](https://greenkeeper.io/)
- Clean and semantically focused.

@@ -154,2 +156,4 @@ - Consistent design for errors, warnings, successes etc.

- **v1.5.1** (27th March 2017)
- IMPORTANT bug fix: addressing issue with displaying instances of `Error` class. ([#30](https://github.com/vajahath/lme/issues/30)). (Highly recommended to update to this version)
- **v1.5.0** (6th March 2017)

@@ -156,0 +160,0 @@ - Support for [custom separate color schemes for line and text](https://github.com/vajahath/lme/wiki/Custom-Color-Schemes).

@@ -23,3 +23,3 @@ function getMessageArgs(args) {

msgArgs.forEach(function(arg) {
if (typeof(arg) == 'object') {
if ((typeof(arg) === 'object')&& !(arg instanceof Error)) {
outputArgs.push('\n' + JSON.stringify(arg, null, 2));

@@ -26,0 +26,0 @@ } else {

Sorry, the diff of this file is not supported yet

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