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

storeon

Package Overview
Dependencies
Maintainers
1
Versions
43
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

storeon - npm Package Compare versions

Comparing version 0.8.6 to 0.8.7

3

CHANGELOG.md
# Change Log
This project adheres to [Semantic Versioning](http://semver.org/).
## 0.8.7
* Reduce `devtools/logger` size (by WrinkleJ and Alexey Berezin).
## 0.8.6

@@ -5,0 +8,0 @@ * Fix `devtools/logger` on React Native.

27

devtools/logger.browser.js

@@ -1,20 +0,19 @@

var print
if (typeof navigator === 'undefined' || navigator.product === 'ReactNative') {
var print = console.log
if (typeof navigator !== 'undefined' && navigator.product !== 'ReactNative') {
print = function (type, name, opts) {
if (opts) {
console.log(type + ' ' + name, opts)
console.log(
'%c' + type + ' %c' + name,
'color: #070',
'color: #070; font-weight: 700',
opts
)
} else {
console.log(type + ' ' + name)
console.log(
'%c' + type + ' %c' + name,
'color: #070',
'color: #070; font-weight: 700'
)
}
}
} else {
var STYLE = 'color: #008100'
var BOLD = 'color: #008100; font-weight: bold'
print = function (type, name, opts) {
if (opts) {
console.log('%c' + type + ' %c' + name, STYLE, BOLD, opts)
} else {
console.log('%c' + type + ' %c' + name, STYLE, BOLD)
}
}
}

@@ -21,0 +20,0 @@

{
"name": "storeon",
"version": "0.8.6",
"version": "0.8.7",
"description": "Tiny (173 bytes) event-based Redux-like state manager for React and Preact",

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

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