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

colorful-logger

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

colorful-logger - npm Package Compare versions

Comparing version 0.1.2 to 0.1.3

src/custom-lodash.js

2

bower.json
{
"name": "colorful-logger",
"version": "0.1.2",
"version": "0.1.3",
"homepage": "https://github.com/saitodisse/colorful-logger",

@@ -5,0 +5,0 @@ "authors": [

{
"name": "colorful-logger",
"version": "0.1.2",
"version": "0.1.3",
"description": "colorful console.log",

@@ -23,10 +23,23 @@ "main": "index.js",

"dependencies": {
"lodash": "^2.4.1"
"lodash.assign": "^2.4.1",
"lodash.find": "^2.4.1",
"lodash.isarray": "^2.4.1",
"lodash.isboolean": "^2.4.1",
"lodash.isempty": "^2.4.1",
"lodash.isnumber": "^2.4.1",
"lodash.isobject": "^2.4.1",
"lodash.isstring": "^2.4.1",
"lodash.isundefined": "^2.4.1",
"lodash.merge": "^2.4.1",
"lodash.partialright": "^2.4.1",
"lodash.random": "^2.4.1"
},
"devDependencies": {
"buster": "^0.7.14",
"grunt": "^0.4.5",
"grunt-contrib-jshint": "^0.10.0",
"grunt-contrib-watch": "^0.6.1",
"jshint-stylish": "^0.2.0"
"jshint-stylish": "^0.2.0",
"lodash": "^2.4.1"
}
}
by: [saitodisse](http://saitodisse.github.io/)
#colorful-logger
###[0.1.1 (beta)]
colorful console.log

@@ -6,0 +5,0 @@

@@ -16,3 +16,3 @@ /** @license MIT License (c) Copyright (c) 2014 Julio Makdisse Saito */

if (typeof define === 'function' && define.amd) {
define(['lodash', 'exports'], function (_, exports) {
define(['./custom-lodash', 'exports'], function (_, exports) {
factory(root, exports, _);

@@ -24,3 +24,3 @@ });

else if (typeof exports !== 'undefined') {
var _ = require('lodash');
var _ = require('./custom-lodash');
factory(root, exports, _);

@@ -121,3 +121,3 @@ }

this.sendToOutput(opt, fullMessage, cssList);
return true;

@@ -172,3 +172,3 @@ };

}
}

@@ -181,3 +181,3 @@ cssList.push(opt.css);

var localConsole = this.config.output;
if(opt && _.isArray(opt)){

@@ -184,0 +184,0 @@ opt = opt[0];

@@ -6,3 +6,3 @@ (function(root, factory) {

if (typeof define === 'function' && define.amd) {
define(['lodash', 'exports'], function (_, exports) {
define(['./custom-lodash', 'exports'], function (_, exports) {
factory(root, exports, _);

@@ -14,3 +14,3 @@ });

else if (typeof exports !== 'undefined') {
var _ = require('lodash');
var _ = require('./custom-lodash');
factory(root, exports, _);

@@ -159,3 +159,3 @@ }

if(_.isString(args[0])){
if(!htmlConsole.firstGroupCollapsed){

@@ -227,3 +227,3 @@ // no group

finalInnerHTML += currentGroup.body;
// check children/ parent, i dont know!!! :P

@@ -235,3 +235,3 @@ // var hasParent = (!_.isUndefined(htmlConsole.parent));

finalInnerHTML += '</div></div>';
// rendered HTML

@@ -328,3 +328,3 @@ currentGroup.finalInnerHTML = finalInnerHTML;

// head.appendChild(sheet);
// try{

@@ -339,3 +339,3 @@ // sheet

// var wrapper = isIE ? browserDocument.createElement('div') : sheet;
// return (function(cssText, node) {

@@ -348,10 +348,10 @@ // if(!node || node.parentNode !== wrapper){

// }
// if (isIE){
// sheet.styleSheet.cssText = wrapper.innerHTML;
// }
// return node;
// })(cssText);
// };
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