New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

class-mixin

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

class-mixin - npm Package Compare versions

Comparing version 1.0.2 to 1.0.3

8

lib/index.js
(function (global, factory) {
if (typeof define === "function" && define.amd) {
define(["exports", "babel-polyfill"], factory);
define(["exports"], factory);
} else if (typeof exports !== "undefined") {
factory(exports, require("babel-polyfill"));
factory(exports);
} else {

@@ -10,3 +10,3 @@ var mod = {

};
factory(mod.exports, global.babelPolyfill);
factory(mod.exports);
global.index = mod.exports;

@@ -72,3 +72,3 @@ }

try {
for (var _iterator2 = Reflect.ownKeys(source)[Symbol.iterator](), _step2; !(_iteratorNormalCompletion2 = (_step2 = _iterator2.next()).done); _iteratorNormalCompletion2 = true) {
for (var _iterator2 = Object.getOwnPropertyNames(source).concat(Object.getOwnPropertySymbols(source))[Symbol.iterator](), _step2; !(_iteratorNormalCompletion2 = (_step2 = _iterator2.next()).done); _iteratorNormalCompletion2 = true) {
var key = _step2.value;

@@ -75,0 +75,0 @@

{
"name": "class-mixin",
"version": "1.0.2",
"version": "1.0.3",
"description": "Mixin for ES6 classes",

@@ -10,3 +10,4 @@ "main": "./lib",

"test": "npm run compile && npm run mocha",
"cover": "./node_modules/.bin/istanbul cover node_modules/mocha/bin/_mocha -- --compilers js:babel-core/register && codecov"
"cover": "./node_modules/.bin/istanbul cover node_modules/mocha/bin/_mocha -- --compilers js:babel-core/register",
"codecov": "npm run cover && codecov"
},

@@ -39,6 +40,3 @@ "repository": {

"mocha": "^2.4.5"
},
"dependencies": {
"babel-polyfill": "^6.7.4"
}
}
# class-mixin
[![npm version](https://img.shields.io/npm/v/class-mixin.svg?style=flat)](https://www.npmjs.com/package/class-mixin)
[![Build Status](https://travis-ci.org/daysv/class-mixin.svg?branch=master)](https://travis-ci.org/daysv/class-mixin)
[![codecov.io](https://codecov.io/github/daysv/class-mixin/coverage.svg?branch=master)](https://codecov.io/github/daysv/class-mixin?branch=master)
Mixin for ES6 classes
Mixin for ES6 classes
# Usage

@@ -8,0 +8,0 @@

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