backbone.radio
Advanced tools
Comparing version 1.0.2 to 1.0.3
{ | ||
"name": "backbone.radio", | ||
"version": "1.0.2", | ||
"version": "1.0.3", | ||
"homepage": "https://github.com/marionettejs/backbone.radio", | ||
@@ -5,0 +5,0 @@ "authors": [ |
@@ -1,7 +0,15 @@ | ||
// Backbone.Radio v1.0.2 | ||
'use strict'; | ||
var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol ? "symbol" : typeof obj; }; | ||
// Backbone.Radio v1.0.3 | ||
(function (global, factory) { | ||
typeof exports === "object" && typeof module !== "undefined" ? module.exports = factory(require("underscore"), require("backbone")) : typeof define === "function" && define.amd ? define(["underscore", "backbone"], factory) : global.Backbone.Radio = factory(global._, global.Backbone); | ||
})(this, function (_, Backbone) { | ||
"use strict"; | ||
(typeof exports === 'undefined' ? 'undefined' : _typeof(exports)) === 'object' && typeof module !== 'undefined' ? module.exports = factory(require('underscore'), require('backbone')) : typeof define === 'function' && define.amd ? define(['underscore', 'backbone'], factory) : (global.Backbone = global.Backbone || {}, global.Backbone.Radio = factory(global._, global.Backbone)); | ||
})(undefined, function (_, Backbone) { | ||
'use strict'; | ||
_ = 'default' in _ ? _['default'] : _; | ||
Backbone = 'default' in Backbone ? Backbone['default'] : Backbone; | ||
var previousRadio = Backbone.Radio; | ||
@@ -11,3 +19,3 @@ | ||
Radio.VERSION = "1.0.2"; | ||
Radio.VERSION = '1.0.3'; | ||
@@ -29,3 +37,3 @@ // This allows you to run multiple instances of Radio on the same | ||
Radio._debugText = function (warning, eventName, channelName) { | ||
return warning + (channelName ? " on the " + channelName + " channel" : "") + ": \"" + eventName + "\""; | ||
return warning + (channelName ? ' on the ' + channelName + ' channel' : '') + ': "' + eventName + '"'; | ||
}; | ||
@@ -57,3 +65,3 @@ | ||
// Handle event maps. | ||
if (typeof name === "object") { | ||
if ((typeof name === 'undefined' ? 'undefined' : _typeof(name)) === 'object') { | ||
for (var key in name) { | ||
@@ -100,3 +108,3 @@ var result = obj[action].apply(obj, [key, name[key]].concat(rest)); | ||
var event = store[name]; | ||
if ((!callback || (callback === event.callback || callback === event.callback._callback)) && (!context || context === event.context)) { | ||
if ((!callback || callback === event.callback || callback === event.callback._callback) && (!context || context === event.context)) { | ||
delete store[name]; | ||
@@ -148,4 +156,7 @@ return true; | ||
log: function log(channelName, eventName) { | ||
var args = _.rest(arguments, 2); | ||
console.log("[" + channelName + "] \"" + eventName + "\"", args); | ||
if (typeof console === 'undefined') { | ||
return; | ||
} | ||
var args = _.drop(arguments, 2); | ||
console.log('[' + channelName + '] "' + eventName + '"', args); | ||
}, | ||
@@ -159,3 +170,3 @@ | ||
channel._tunedIn = true; | ||
channel.on("all", _partial(channelName)); | ||
channel.on('all', _partial(channelName)); | ||
return this; | ||
@@ -168,3 +179,3 @@ }, | ||
channel._tunedIn = false; | ||
channel.off("all", _partial(channelName)); | ||
channel.off('all', _partial(channelName)); | ||
delete _logs[channelName]; | ||
@@ -193,3 +204,3 @@ return this; | ||
var args = _.rest(arguments); | ||
var results = Radio._eventsApi(this, "request", name, args); | ||
var results = Radio._eventsApi(this, 'request', name, args); | ||
if (results) { | ||
@@ -207,8 +218,8 @@ return results; | ||
// If the request isn't handled, log it in DEBUG mode and exit | ||
if (requests && (requests[name] || requests["default"])) { | ||
var handler = requests[name] || requests["default"]; | ||
if (requests && (requests[name] || requests['default'])) { | ||
var handler = requests[name] || requests['default']; | ||
args = requests[name] ? args : arguments; | ||
return Radio._callHandler(handler.callback, handler.context, args); | ||
} else { | ||
Radio.debugLog("An unhandled request was fired", name, channelName); | ||
Radio.debugLog('An unhandled request was fired', name, channelName); | ||
} | ||
@@ -219,3 +230,3 @@ }, | ||
reply: function reply(name, callback, context) { | ||
if (Radio._eventsApi(this, "reply", name, [callback, context])) { | ||
if (Radio._eventsApi(this, 'reply', name, [callback, context])) { | ||
return this; | ||
@@ -227,3 +238,3 @@ } | ||
if (this._requests[name]) { | ||
Radio.debugLog("A request was overwritten", name, this.channelName); | ||
Radio.debugLog('A request was overwritten', name, this.channelName); | ||
} | ||
@@ -241,3 +252,3 @@ | ||
replyOnce: function replyOnce(name, callback, context) { | ||
if (Radio._eventsApi(this, "replyOnce", name, [callback, context])) { | ||
if (Radio._eventsApi(this, 'replyOnce', name, [callback, context])) { | ||
return this; | ||
@@ -258,3 +269,3 @@ } | ||
stopReplying: function stopReplying(name, callback, context) { | ||
if (Radio._eventsApi(this, "stopReplying", name)) { | ||
if (Radio._eventsApi(this, 'stopReplying', name)) { | ||
return this; | ||
@@ -267,3 +278,3 @@ } | ||
} else if (!removeHandlers(this._requests, name, callback, context)) { | ||
Radio.debugLog("Attempted to remove the unregistered request", name, this.channelName); | ||
Radio.debugLog('Attempted to remove the unregistered request', name, this.channelName); | ||
} | ||
@@ -286,3 +297,3 @@ | ||
if (!channelName) { | ||
throw new Error("You must provide a name for the channel."); | ||
throw new Error('You must provide a name for the channel.'); | ||
} | ||
@@ -328,6 +339,5 @@ | ||
var channel, | ||
args, | ||
systems = [Backbone.Events, Radio.Commands, Radio.Requests]; | ||
var channel; | ||
var args; | ||
var systems = [Backbone.Events, Radio.Requests]; | ||
_.each(systems, function (system) { | ||
@@ -345,9 +355,7 @@ _.each(system, function (method, methodName) { | ||
var channels = !channelName ? this._channels : [this._channels[channelName]]; | ||
_.invoke(channels, "reset"); | ||
_.invoke(channels, 'reset'); | ||
}; | ||
var backbone_radio = Radio; | ||
return backbone_radio; | ||
return Radio; | ||
}); | ||
//# sourceMappingURL=./backbone.radio.js.map |
@@ -1,3 +0,3 @@ | ||
// Backbone.Radio v1.0.2 | ||
!function(e,n){"object"==typeof exports&&"undefined"!=typeof module?module.exports=n(require("underscore"),require("backbone")):"function"==typeof define&&define.amd?define(["underscore","backbone"],n):e.Backbone.Radio=n(e._,e.Backbone)}(this,function(e,n){"use strict";function t(e,n,t,r){var s=e[n];return t&&t!==s.callback&&t!==s.callback._callback||r&&r!==s.context?void 0:(delete e[n],!0)}function r(n,r,s,i){n||(n={});for(var a=r?[r]:e.keys(n),u=!1,o=0,c=a.length;c>o;o++)r=a[o],n[r]&&t(n,r,s,i)&&(u=!0);return u}function s(n){return c[n]||(c[n]=e.partial(u.log,n))}function i(n){return e.isFunction(n)?n:function(){return n}}var a=n.Radio,u=n.Radio={};u.VERSION="1.0.2",u.noConflict=function(){return n.Radio=a,this},u.DEBUG=!1,u._debugText=function(e,n,t){return e+(t?" on the "+t+" channel":"")+': "'+n+'"'},u.debugLog=function(e,n,t){u.DEBUG&&console&&console.warn&&console.warn(u._debugText(e,n,t))};var o=/\s+/;u._eventsApi=function(n,t,r,s){if(!r)return!1;var i={};if("object"==typeof r){for(var a in r){var u=n[t].apply(n,[a,r[a]].concat(s));o.test(a)?e.extend(i,u):i[a]=u}return i}if(o.test(r)){for(var c=r.split(o),l=0,h=c.length;h>l;l++)i[c[l]]=n[t].apply(n,[c[l]].concat(s));return i}return!1},u._callHandler=function(e,n,t){var r=t[0],s=t[1],i=t[2];switch(t.length){case 0:return e.call(n);case 1:return e.call(n,r);case 2:return e.call(n,r,s);case 3:return e.call(n,r,s,i);default:return e.apply(n,t)}};var c={};e.extend(u,{log:function(n,t){var r=e.rest(arguments,2);console.log("["+n+'] "'+t+'"',r)},tuneIn:function(e){var n=u.channel(e);return n._tunedIn=!0,n.on("all",s(e)),this},tuneOut:function(e){var n=u.channel(e);return n._tunedIn=!1,n.off("all",s(e)),delete c[e],this}}),u.Requests={request:function(n){var t=e.rest(arguments),r=u._eventsApi(this,"request",n,t);if(r)return r;var s=this.channelName,i=this._requests;if(s&&this._tunedIn&&u.log.apply(this,[s,n].concat(t)),i&&(i[n]||i["default"])){var a=i[n]||i["default"];return t=i[n]?t:arguments,u._callHandler(a.callback,a.context,t)}u.debugLog("An unhandled request was fired",n,s)},reply:function(e,n,t){return u._eventsApi(this,"reply",e,[n,t])?this:(this._requests||(this._requests={}),this._requests[e]&&u.debugLog("A request was overwritten",e,this.channelName),this._requests[e]={callback:i(n),context:t||this},this)},replyOnce:function(n,t,r){if(u._eventsApi(this,"replyOnce",n,[t,r]))return this;var s=this,a=e.once(function(){return s.stopReplying(n),i(t).apply(this,arguments)});return this.reply(n,a,r)},stopReplying:function(e,n,t){return u._eventsApi(this,"stopReplying",e)?this:(e||n||t?r(this._requests,e,n,t)||u.debugLog("Attempted to remove the unregistered request",e,this.channelName):delete this._requests,this)}},u._channels={},u.channel=function(e){if(!e)throw new Error("You must provide a name for the channel.");return u._channels[e]?u._channels[e]:u._channels[e]=new u.Channel(e)},u.Channel=function(e){this.channelName=e},e.extend(u.Channel.prototype,n.Events,u.Requests,{reset:function(){return this.off(),this.stopListening(),this.stopReplying(),this}});var l,h,f=[n.Events,u.Commands,u.Requests];e.each(f,function(n){e.each(n,function(n,t){u[t]=function(n){return h=e.rest(arguments),l=this.channel(n),l[t].apply(l,h)}})}),u.reset=function(n){var t=n?[this._channels[n]]:this._channels;e.invoke(t,"reset")};var p=u;return p}); | ||
//# sourceMappingURL=backbone.radio.min.js.map | ||
// Backbone.Radio v1.0.3 | ||
"use strict";var _typeof="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol?"symbol":typeof e};!function(e,n){"object"===("undefined"==typeof exports?"undefined":_typeof(exports))&&"undefined"!=typeof module?module.exports=n(require("underscore"),require("backbone")):"function"==typeof define&&define.amd?define(["underscore","backbone"],n):(e.Backbone=e.Backbone||{},e.Backbone.Radio=n(e._,e.Backbone))}(void 0,function(e,n){function t(e,n,t,r){var o=e[n];return t&&t!==o.callback&&t!==o.callback._callback||r&&r!==o.context?void 0:(delete e[n],!0)}function r(n,r,o,i){n||(n={});for(var u=r?[r]:e.keys(n),s=!1,a=0,c=u.length;c>a;a++)r=u[a],n[r]&&t(n,r,o,i)&&(s=!0);return s}function o(n){return c[n]||(c[n]=e.partial(s.log,n))}function i(n){return e.isFunction(n)?n:function(){return n}}e="default"in e?e["default"]:e,n="default"in n?n["default"]:n;var u=n.Radio,s=n.Radio={};s.VERSION="1.0.3",s.noConflict=function(){return n.Radio=u,this},s.DEBUG=!1,s._debugText=function(e,n,t){return e+(t?" on the "+t+" channel":"")+': "'+n+'"'},s.debugLog=function(e,n,t){s.DEBUG&&console&&console.warn&&console.warn(s._debugText(e,n,t))};var a=/\s+/;s._eventsApi=function(n,t,r,o){if(!r)return!1;var i={};if("object"===("undefined"==typeof r?"undefined":_typeof(r))){for(var u in r){var s=n[t].apply(n,[u,r[u]].concat(o));a.test(u)?e.extend(i,s):i[u]=s}return i}if(a.test(r)){for(var c=r.split(a),l=0,f=c.length;f>l;l++)i[c[l]]=n[t].apply(n,[c[l]].concat(o));return i}return!1},s._callHandler=function(e,n,t){var r=t[0],o=t[1],i=t[2];switch(t.length){case 0:return e.call(n);case 1:return e.call(n,r);case 2:return e.call(n,r,o);case 3:return e.call(n,r,o,i);default:return e.apply(n,t)}};var c={};e.extend(s,{log:function(n,t){if("undefined"!=typeof console){var r=e.drop(arguments,2);console.log("["+n+'] "'+t+'"',r)}},tuneIn:function(e){var n=s.channel(e);return n._tunedIn=!0,n.on("all",o(e)),this},tuneOut:function(e){var n=s.channel(e);return n._tunedIn=!1,n.off("all",o(e)),delete c[e],this}}),s.Requests={request:function(n){var t=e.rest(arguments),r=s._eventsApi(this,"request",n,t);if(r)return r;var o=this.channelName,i=this._requests;if(o&&this._tunedIn&&s.log.apply(this,[o,n].concat(t)),i&&(i[n]||i["default"])){var u=i[n]||i["default"];return t=i[n]?t:arguments,s._callHandler(u.callback,u.context,t)}s.debugLog("An unhandled request was fired",n,o)},reply:function(e,n,t){return s._eventsApi(this,"reply",e,[n,t])?this:(this._requests||(this._requests={}),this._requests[e]&&s.debugLog("A request was overwritten",e,this.channelName),this._requests[e]={callback:i(n),context:t||this},this)},replyOnce:function(n,t,r){if(s._eventsApi(this,"replyOnce",n,[t,r]))return this;var o=this,u=e.once(function(){return o.stopReplying(n),i(t).apply(this,arguments)});return this.reply(n,u,r)},stopReplying:function(e,n,t){return s._eventsApi(this,"stopReplying",e)?this:(e||n||t?r(this._requests,e,n,t)||s.debugLog("Attempted to remove the unregistered request",e,this.channelName):delete this._requests,this)}},s._channels={},s.channel=function(e){if(!e)throw new Error("You must provide a name for the channel.");return s._channels[e]?s._channels[e]:s._channels[e]=new s.Channel(e)},s.Channel=function(e){this.channelName=e},e.extend(s.Channel.prototype,n.Events,s.Requests,{reset:function(){return this.off(),this.stopListening(),this.stopReplying(),this}});var l,f,h=[n.Events,s.Requests];return e.each(h,function(n){e.each(n,function(n,t){s[t]=function(n){return f=e.rest(arguments),l=this.channel(n),l[t].apply(l,f)}})}),s.reset=function(n){var t=n?[this._channels[n]]:this._channels;e.invoke(t,"reset")},s}); | ||
//# sourceMappingURL=backbone.radio.min.js.map |
@@ -0,1 +1,9 @@ | ||
### [1.0.3](https://github.com/marionettejs/backbone.radio/releases/tag/1.0.3) | ||
- Updated Backbone dep to allow v1.3.2 | ||
### [1.0.2](https://github.com/marionettejs/backbone.radio/releases/tag/1.0.2) | ||
- Updated Backbone dep to allow v1.2.3 | ||
### [1.0.1](https://github.com/marionettejs/backbone.radio/releases/tag/1.0.1) | ||
@@ -2,0 +10,0 @@ |
@@ -5,3 +5,3 @@ { | ||
"homepage": "https://github.com/marionettejs/backbone.radio", | ||
"version": "1.0.2", | ||
"version": "1.0.3", | ||
"main": "build/backbone.radio.js", | ||
@@ -45,51 +45,45 @@ "keywords": [ | ||
"dependencies": { | ||
"backbone": "1.0.0 - 1.2.3", | ||
"backbone": "1.0.0 - 1.3.2", | ||
"underscore": "1.4.4 - 1.8.3" | ||
}, | ||
"devDependencies": { | ||
"babel": "^4.3.0", | ||
"babelify": "^5.0.3", | ||
"browserify": "^8.1.1", | ||
"chai": "^2.0.0", | ||
"del": "^1.1.1", | ||
"esperanto": "^0.6.7", | ||
"glob": "^4.3.5", | ||
"gulp": "^3.8.10", | ||
"gulp-babel": "^4.0.0", | ||
"babel-core": "^6.3.26", | ||
"babel-eslint": "^4.1.6", | ||
"babel-loader": "^6.2.0", | ||
"babel-polyfill": "^6.3.14", | ||
"babel-preset-es2015": "^6.3.13", | ||
"babel-register": "^6.3.13", | ||
"chai": "^3.4.1", | ||
"del": "^2.2.0", | ||
"glob": "^6.0.3", | ||
"gulp": "^3.9.0", | ||
"gulp-babel": "^6.1.1", | ||
"gulp-eslint": "^1.1.1", | ||
"gulp-file": "^0.2.0", | ||
"gulp-filter": "^2.0.0", | ||
"gulp-header": "^1.2.2", | ||
"gulp-istanbul": "^0.6.0", | ||
"gulp-jscs": "^1.4.0", | ||
"gulp-jshint": "^1.9.0", | ||
"gulp-livereload": "^3.4.0", | ||
"gulp-load-plugins": "^0.8.0", | ||
"gulp-mocha": "^2.0.0", | ||
"gulp-notify": "^2.1.0", | ||
"gulp-plumber": "^0.6.6", | ||
"gulp-rename": "^1.2.0", | ||
"gulp-sourcemaps": "^1.3.0", | ||
"gulp-uglifyjs": "^0.6.0", | ||
"isparta": "^2.2.0", | ||
"jshint-stylish": "^1.0.0", | ||
"mkdirp": "^0.5.0", | ||
"mocha": "^2.1.0", | ||
"run-sequence": "^1.0.2", | ||
"sinon": "^1.12.2", | ||
"sinon-chai": "^2.7.0", | ||
"vinyl-source-stream": "^1.0.0" | ||
"gulp-filter": "^3.0.0", | ||
"gulp-header": "^1.7.1", | ||
"gulp-istanbul": "^0.10.3", | ||
"gulp-jscs": "^3.0.0", | ||
"gulp-livereload": "^3.8.1", | ||
"gulp-load-plugins": "^1.1.0", | ||
"gulp-mocha": "^2.2.0", | ||
"gulp-plumber": "^1.0.1", | ||
"gulp-rename": "^1.2.2", | ||
"gulp-sourcemaps": "^1.6.0", | ||
"gulp-uglify": "^1.5.1", | ||
"gulp-util": "^3.0.7", | ||
"isparta": "^4.0.0", | ||
"json-loader": "^0.5.3", | ||
"mkdirp": "^0.5.1", | ||
"mocha": "^2.3.4", | ||
"rollup": "^0.25.4", | ||
"sinon": "^1.17.2", | ||
"sinon-chai": "^2.8.0", | ||
"webpack": "^1.12.9", | ||
"webpack-stream": "^3.1.0" | ||
}, | ||
"babelBoilerplateOptions": { | ||
"entryFileName": "backbone.radio", | ||
"exportVarName": "Backbone.Radio", | ||
"mochaGlobals": [ | ||
"stub", | ||
"spy", | ||
"expect", | ||
"_", | ||
"Backbone", | ||
"Radio", | ||
"slice" | ||
] | ||
"mainVarName": "Backbone.Radio" | ||
} | ||
} |
@@ -61,3 +61,3 @@ # Backbone.Radio | ||
<p align='center'> | ||
<img src='https://i.cloudup.com/u9oC3S1LxE.svg' alt='Backbone.Events diagram'> | ||
<img src='https://cloud.githubusercontent.com/assets/10248067/11762943/5a927e54-a0bd-11e5-8aa5-e0fafae0e559.png' alt='Backbone.Events diagram'> | ||
</p> | ||
@@ -113,3 +113,3 @@ | ||
<p align='center'> | ||
<img src='https://i.cloudup.com/tEVU_tuRIX.svg' alt='Backbone.Requests diagram'> | ||
<img src='https://cloud.githubusercontent.com/assets/10248067/11762945/5c302a36-a0bd-11e5-8e4e-0eee7cacbef1.png' alt='Backbone.Requests diagram'> | ||
</p> | ||
@@ -116,0 +116,0 @@ |
@@ -14,3 +14,3 @@ import _ from 'underscore'; | ||
// returned to Backbone.Radio. | ||
Radio.noConflict = function () { | ||
Radio.noConflict = function() { | ||
Backbone.Radio = previousRadio; | ||
@@ -77,3 +77,3 @@ return this; | ||
var a1 = args[0], a2 = args[1], a3 = args[2]; | ||
switch(args.length) { | ||
switch (args.length) { | ||
case 0: return callback.call(context); | ||
@@ -140,3 +140,4 @@ case 1: return callback.call(context, a1); | ||
log: function(channelName, eventName) { | ||
var args = _.rest(arguments, 2); | ||
if (typeof console === 'undefined') { return; } | ||
var args = _.drop(arguments, 2); | ||
console.log('[' + channelName + '] "' + eventName + '"', args); | ||
@@ -165,3 +166,2 @@ }, | ||
/* | ||
@@ -175,3 +175,3 @@ * Backbone.Radio.Requests | ||
function makeCallback(callback) { | ||
return _.isFunction(callback) ? callback : function () { return callback; }; | ||
return _.isFunction(callback) ? callback : function() { return callback; }; | ||
} | ||
@@ -311,3 +311,3 @@ | ||
var channel, args, systems = [Backbone.Events, Radio.Commands, Radio.Requests]; | ||
var channel, args, systems = [Backbone.Events, Radio.Requests]; | ||
@@ -314,0 +314,0 @@ _.each(systems, function(system) { |
@@ -5,3 +5,16 @@ global.chai = require('chai'); | ||
require('babel/register'); | ||
require('babel-core/register'); | ||
require('./setup')(); | ||
/* | ||
Uncomment the following if your library uses features of the DOM, | ||
for example if writing a jQuery extension, and | ||
add 'simple-jsdom' to the `devDependencies` of your package.json | ||
Note that JSDom doesn't implement the entire DOM API. If you're using | ||
more advanced or experimental features, you may need to switch to | ||
PhantomJS. Setting that up is currently outside of the scope of this | ||
boilerplate. | ||
*/ | ||
// import simpleJSDom from 'simple-jsdom'; | ||
// simpleJSDom.install(); |
@@ -1,2 +0,2 @@ | ||
module.exports = function() { | ||
module.exports = function(root) { | ||
global._ = require('underscore'); | ||
@@ -3,0 +3,0 @@ global.Backbone = require('backbone'); |
@@ -1,3 +0,3 @@ | ||
describe('Channel:', function () { | ||
beforeEach(function () { | ||
describe('Channel:', function() { | ||
beforeEach(function() { | ||
this.channel = Backbone.Radio.channel('myChannel'); | ||
@@ -4,0 +4,0 @@ this.channelTwo = Backbone.Radio.channel('myOtherChannel'); |
@@ -369,4 +369,4 @@ describe('Requests:', function() { | ||
this.Requests.request({ | ||
'requestOne' : 'argOne', | ||
'requestTwo' : 'argTwo' | ||
'requestOne': 'argOne', | ||
'requestTwo': 'argTwo' | ||
}); | ||
@@ -529,4 +529,4 @@ }); | ||
this.Requests.request({ | ||
'requestOne requestTwo' : 'argOne', | ||
'requestThree' : 'argTwo' | ||
'requestOne requestTwo': 'argOne', | ||
'requestThree': 'argTwo' | ||
}); | ||
@@ -557,4 +557,4 @@ }); | ||
this.Requests.request({ | ||
'requestOne requestTwo' : 'argOne', | ||
'requestTwo' : 'argTwo' | ||
'requestOne requestTwo': 'argOne', | ||
'requestTwo': 'argTwo' | ||
}); | ||
@@ -561,0 +561,0 @@ }); |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
31
1722
137952
34
+ Addedbackbone@1.3.2(transitive)
- Removedbackbone@1.2.3(transitive)
Updatedbackbone@1.0.0 - 1.3.2