Socket
Socket
Sign inDemoInstall

mixme

Package Overview
Dependencies
Maintainers
1
Versions
21
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

mixme - npm Package Compare versions

Comparing version 0.4.0 to 0.5.0

4

CHANGELOG.md
# Changelog
## Version 0.5.0
* feat: support object with null prototype
## Version 0.4.0

@@ -5,0 +9,0 @@

@@ -6,2 +6,4 @@ 'use strict';

function _typeof(obj) {
"@babel/helpers - typeof";
if (typeof Symbol === "function" && typeof Symbol.iterator === "symbol") {

@@ -20,3 +22,3 @@ _typeof = function (obj) {

// Generated by CoffeeScript 2.4.1
// Generated by CoffeeScript 2.5.1
var _snake_case;

@@ -165,2 +167,6 @@

} else {
if (Object.getPrototypeOf(test) === null) {
return true;
}
while (!false) {

@@ -167,0 +173,0 @@ if (Object.getPrototypeOf(test = Object.getPrototypeOf(test)) === null) {

function _typeof(obj) {
"@babel/helpers - typeof";
if (typeof Symbol === "function" && typeof Symbol.iterator === "symbol") {

@@ -15,3 +17,3 @@ _typeof = function (obj) {

// Generated by CoffeeScript 2.4.1
// Generated by CoffeeScript 2.5.1
var _snake_case, _clone, _compare, is_object, is_object_literal, merge, _mutate, _snake_case2;

@@ -160,2 +162,6 @@

} else {
if (Object.getPrototypeOf(test) === null) {
return true;
}
while (!false) {

@@ -162,0 +168,0 @@ if (Object.getPrototypeOf(test = Object.getPrototypeOf(test)) === null) {

14

dist/mixme.umd.js
(function (global, factory) {
typeof exports === 'object' && typeof module !== 'undefined' ? factory(exports) :
typeof define === 'function' && define.amd ? define(['exports'], factory) :
(global = global || self, factory(global.mixme = {}));
}(this, function (exports) { 'use strict';
(global = typeof globalThis !== 'undefined' ? globalThis : global || self, factory(global.mixme = {}));
}(this, (function (exports) { 'use strict';
function _typeof(obj) {
"@babel/helpers - typeof";
if (typeof Symbol === "function" && typeof Symbol.iterator === "symbol") {

@@ -21,3 +23,3 @@ _typeof = function (obj) {

// Generated by CoffeeScript 2.4.1
// Generated by CoffeeScript 2.5.1
var _snake_case;

@@ -166,2 +168,6 @@

} else {
if (Object.getPrototypeOf(test) === null) {
return true;
}
while (!false) {

@@ -179,2 +185,2 @@ if (Object.getPrototypeOf(test = Object.getPrototypeOf(test)) === null) {

}));
})));
{
"name": "mixme",
"description": "A library for recursive merging of Javascript objects",
"version": "0.4.0",
"version": "0.5.0",
"author": "David Worms <david@adaltas.com> (https://www.adaltas.com)",
"contributors": [],
"devDependencies": {
"@babel/core": "^7.4.3",
"@babel/preset-env": "^7.4.3",
"coffeescript": "^2.4.1",
"mocha": "^6.1.1",
"rollup": "^1.9.0",
"@babel/core": "^7.12.13",
"@babel/preset-env": "^7.12.13",
"coffeescript": "^2.5.1",
"mocha": "^8.2.1",
"rollup": "^2.38.5",
"rollup-plugin-babel": "^4.3.2",

@@ -37,2 +37,13 @@ "should": "^13.2.3"

"module": "dist/mixme.esm.js",
"mocha": {
"throw-deprecation": true,
"require": [
"should",
"./coffee.config.js"
],
"inline-diffs": true,
"timeout": 40000,
"reporter": "spec",
"recursive": true
},
"repository": {

@@ -39,0 +50,0 @@ "type": "git",

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