Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.
var Utils = require('mappersmith').Utils;
var STORE = {};
function FixtureEntry(method) {
this.opts = {
calls: [],
method: method.toLowerCase(),
success: true
}
}
FixtureEntry.prototype = {
matching: function(params) {
this.opts.matchingParams = params;
return this;
},