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

can-fixture

Package Overview
Dependencies
Maintainers
11
Versions
83
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

can-fixture - npm Package Compare versions

Comparing version

to
3.0.0-pre.5

docs/types/Store.prototype.createInstance.md

2

package.json
{
"name": "can-fixture",
"version": "3.0.0-pre.4",
"version": "3.0.0-pre.5",
"description": "Intercept AJAX requests and simulate responses.",

@@ -5,0 +5,0 @@ "main": "fixture.js",

@@ -126,3 +126,16 @@ var QueryLogic = require("can-query-logic");

},
createInstance: function(record){
var idProp = this.idProp;
if(!(idProp in record)) {
record[idProp] = ++this.maxId;
}
return this.connection.createData( record );
},
updateData: connectToConnection("updateData",typeConvert),
updateInstance: function(record) {
return this.connection.updateData(record);
},
destroyInstance: function(record) {
return this.connection.destroyData(record);
},
destroyData: connectToConnection("destroyData",typeConvert),

@@ -129,0 +142,0 @@ reset: function(newItems){