Socket
Socket
Sign inDemoInstall

redux-diff-logger

Package Overview
Dependencies
1
Maintainers
1
Versions
9
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 0.0.1 to 0.0.2

3

build/logger.js

@@ -28,6 +28,7 @@ // https://github.com/flitbit/diff#differences

var newState = getState();
var time = new Date();
var diff = (0, _deepDiff2['default'])(prevState, newState);
console.group('diff');
console.group('diff @ ', time.getMinutes() + ':' + time.getSeconds());

@@ -34,0 +35,0 @@ diff.forEach(function (elem) {

{
"name": "redux-diff-logger",
"version": "0.0.1",
"version": "0.0.2",
"description": "Diff logger between states for redux",

@@ -5,0 +5,0 @@ "main": "build/logger.js",

# Diff logger between states for redux
![logger]()
![logger](http://s17.postimg.org/68pwjk0mn/fcomb_2015_08_10_12_28_18.png)

@@ -5,0 +5,0 @@ ### Install

@@ -15,6 +15,7 @@ // https://github.com/flitbit/diff#differences

const newState = getState();
const time = new Date();
const diff = differ(prevState, newState);
console.group('diff');
console.group('diff @ ', `${time.getMinutes()}:${time.getSeconds()}`);

@@ -21,0 +22,0 @@ diff.forEach((elem) => {

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc