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

@endorphinjs/template-runtime

Package Overview
Dependencies
Maintainers
1
Versions
85
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@endorphinjs/template-runtime - npm Package Compare versions

Comparing version 0.1.2 to 0.1.3

11

dist/runtime.cjs.js

@@ -146,3 +146,3 @@ 'use strict';

return forEachHook(elem.componentModel.definition, name, hook => hook.call(null, hookArgs));
return forEachHook(elem.componentModel.definition, name, hook => hook.apply(null, hookArgs));
}

@@ -631,3 +631,10 @@

if (!elem$$1.componentModel.queued) {
elem$$1.componentModel.queued = nextTick(() => renderComponent(elem$$1));
elem$$1.componentModel.queued = nextTick(() => {
// It’s possible that a component can be rendered before next tick
// (for example, if parent node updated component props).
// Check if it’s still queued then render
if (elem$$1.componentModel.queued) {
renderComponent(elem$$1);
}
});
}

@@ -634,0 +641,0 @@ }

@@ -142,3 +142,3 @@ /**

return forEachHook(elem.componentModel.definition, name, hook => hook.call(null, hookArgs));
return forEachHook(elem.componentModel.definition, name, hook => hook.apply(null, hookArgs));
}

@@ -627,3 +627,10 @@

if (!elem$$1.componentModel.queued) {
elem$$1.componentModel.queued = nextTick(() => renderComponent(elem$$1));
elem$$1.componentModel.queued = nextTick(() => {
// It’s possible that a component can be rendered before next tick
// (for example, if parent node updated component props).
// Check if it’s still queued then render
if (elem$$1.componentModel.queued) {
renderComponent(elem$$1);
}
});
}

@@ -630,0 +637,0 @@ }

2

package.json
{
"name": "@endorphinjs/template-runtime",
"version": "0.1.2",
"version": "0.1.3",
"description": "EndorphinJS template runtime, embedded with template bundles",

@@ -5,0 +5,0 @@ "main": "./dist/runtime.cjs.js",

Sorry, the diff of this file is not supported yet

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