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

bottlejs

Package Overview
Dependencies
Maintainers
1
Versions
30
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

bottlejs - npm Package Compare versions

Comparing version 1.1.0 to 1.1.1

11

dist/bottle.js
;(function(undefined) {
'use strict';
/**
* BottleJS v1.1.0 - 2015-11-09
* BottleJS v1.1.1 - 2015-11-18
* A powerful dependency injection micro container

@@ -497,5 +497,8 @@ *

var setValueObject = function setValueObject(container, name) {
var newContainer = {};
defineValue.call(container, name, newContainer);
return newContainer;
var nestedContainer = container[name];
if (!nestedContainer) {
nestedContainer = {};
defineValue.call(container, name, nestedContainer);
}
return nestedContainer;
};

@@ -502,0 +505,0 @@

{
"name": "bottlejs",
"version": "1.1.0",
"version": "1.1.1",
"description": "A powerful dependency injection micro container",

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

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