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

melody-runtime

Package Overview
Dependencies
Maintainers
3
Versions
82
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

melody-runtime - npm Package Compare versions

Comparing version 1.2.0-commit.8f7c241d to 1.2.0-commit.a347d3ed

6

lib/index.esm.js

@@ -37,7 +37,3 @@ import _isString from 'lodash/isString';

function createSubContext(parent, customValues) {
var subContext = Object.create(parent);
if (customValues) {
Object.assign(subContext, customValues);
}
return subContext;
return Object.assign({}, parent, customValues);
}

@@ -44,0 +40,0 @@

@@ -43,7 +43,3 @@ 'use strict';

function createSubContext(parent, customValues) {
var subContext = Object.create(parent);
if (customValues) {
Object.assign(subContext, customValues);
}
return subContext;
return Object.assign({}, parent, customValues);
}

@@ -50,0 +46,0 @@

2

package.json
{
"name": "melody-runtime",
"version": "1.2.0-commit.8f7c241d",
"version": "1.2.0-commit.a347d3ed",
"description": "",

@@ -5,0 +5,0 @@ "main": "./lib/index.js",

@@ -26,7 +26,3 @@ /**

): Object {
const subContext = Object.create(parent);
if (customValues) {
Object.assign(subContext, customValues);
}
return subContext;
return Object.assign({}, parent, customValues);
}
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