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

mongoose

Package Overview
Dependencies
Maintainers
0
Versions
892
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

mongoose - npm Package Compare versions

Comparing version 1.1.20 to 1.1.21

lib/mongoose/.document.js.swp

5

History.md
1.1.21 / 2011-03-31
===================
* Fixed; setting object root to null/undefined works
1.1.20 / 2011-03-31

@@ -3,0 +8,0 @@ ===================

5

lib/mongoose/document.js

@@ -190,4 +190,7 @@

Document.prototype.set = function (path, val) {
if (typeof path != 'string') {
if ('string' !== typeof path) {
if (null === path || undefined === path)
return this.set(val, path);
var prefix = val

@@ -194,0 +197,0 @@ ? val + '.'

2

lib/mongoose/index.js

@@ -284,3 +284,3 @@

exports.version = '1.1.20';
exports.version = '1.1.21';

@@ -287,0 +287,0 @@ /**

{
"name": "mongoose"
, "description": "Mongoose MongoDB ORM"
, "version": "1.1.20"
, "version": "1.1.21"
, "author": "Guillermo Rauch <guillermo@learnboost.com>"

@@ -6,0 +6,0 @@ , "keywords": ["mongodb", "mongoose", "orm", "data", "datastore", "nosql"]

Sorry, the diff of this file is too big to display

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