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

extendable-base

Package Overview
Dependencies
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

extendable-base - npm Package Compare versions

Comparing version 0.3.0 to 0.3.1

9

browser/extendable-base.js

@@ -72,7 +72,9 @@ (function (factory) {

// Sets up inheritance from the given parent class. If the constructor
// isn't supplied then a default constructor is added which calls
// `initialize` for each class in the inheritance hierarchy.
// isn't supplied then a default constructor is added which invokes
// the parent then calls `initialize` for each class in the
// inheritance hierarchy.
inherits: function (parent, protoProps, staticProps) {
if (!protoProps.hasOwnProperty('constructor')) {
protoProps.constructor = function () {
parent.apply(this);
Base._init_all(Object.getPrototypeOf(this), this, arguments);

@@ -158,3 +160,2 @@ };

return _require(0);
}));
//# sourceMappingURL=extendable-base.js.map
}));
{
"name": "extendable-base",
"version": "0.3.0",
"version": "0.3.1",
"description": "Simple library for setting up Javascript classes based on Backbone.extend",

@@ -29,3 +29,3 @@ "main": "index.js",

"dependencies": {
"underscore": "^1.7.0"
"underscore": ">=1.7.0"
},

@@ -35,3 +35,3 @@ "devDependencies": {

"grunt": "^0.4.5",
"grunt-dry": "^0.2.0"
"grunt-dry": "^0.3.0"
},

@@ -38,0 +38,0 @@ "files":[

@@ -1,2 +0,2 @@

extendable-base: Simple library for setting up Javascript classes
extendable-base: Simple library for setting up Javascript classes [![Build Status: Linux](https://travis-ci.org/jut-io/extendable-base.png?branch=master)](https://travis-ci.org/jut-io/extendable-base)
=================================================================

@@ -3,0 +3,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