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

@erickmerchant/framework

Package Overview
Dependencies
Maintainers
1
Versions
244
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@erickmerchant/framework - npm Package Compare versions

Comparing version 10.0.2 to 10.0.3

8

main.js

@@ -20,4 +20,10 @@ module.exports = function ({target, store, component, diff, options, raf}) {

function dispatch () {
state = stores.reduce((state, store) => store(state, ...arguments), state)
state = stores.reduce((state, store) => {
const args = (arguments.length === 1 ? [arguments[0]] : Array.apply(null, arguments))
args.unshift(state)
return store.apply(null, args)
}, state)
if (!rafCalled) {

@@ -24,0 +30,0 @@ rafCalled = true

2

package.json
{
"name": "@erickmerchant/framework",
"version": "10.0.2",
"version": "10.0.3",
"description": "A simple data down, actions up framework.",

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

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