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

immutable-core-model

Package Overview
Dependencies
Maintainers
1
Versions
226
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

immutable-core-model - npm Package Compare versions

Comparing version

to
0.0.19

7

lib/immutable-core-model-instance.js

@@ -214,2 +214,5 @@ 'use strict'

*
* returns inspect of object with model, raw (database result), and session
* omitted.
*
* @param {integer} depth

@@ -221,3 +224,5 @@ * @param {object} options

function inspect (depth, options) {
return '[immutable.model.'+this.model.name+'] '+util.inspect(this.raw)
var out = '[immutable.model.'+this.model.name+'] '
var obj = _.omit(this, ['action', 'init', 'inspect', 'model', 'raw', 'session', 'toJSON'])
return out + util.inspect(obj)
}

@@ -224,0 +229,0 @@

2

package.json

@@ -36,3 +36,3 @@ {

},
"version": "0.0.18"
"version": "0.0.19"
}