Skip to content

Commit

Permalink
0.6.9
Browse files Browse the repository at this point in the history
  • Loading branch information
marshallswain committed Aug 29, 2016
1 parent 56dd2df commit acedf18
Show file tree
Hide file tree
Showing 5 changed files with 774 additions and 0 deletions.
212 changes: 212 additions & 0 deletions dist/amd/can-connect-feathers.js

Large diffs are not rendered by default.

25 changes: 25 additions & 0 deletions dist/amd/utils.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
/*can-connect-feathers@0.6.8#utils*/
define([], function () {
'use strict';
function stripSlashes(location) {
return location.replace(/^(\/*)|(\/*)$/g, '');
}
function addAliases(service) {
service.find = service.getListData;
service.get = service.getData;
service.create = service.createData;
service.update = service.updateData;
service.patch = service.patchData;
service.remove = service.destroyData;
return service;
}
return {
get stripSlashes() {
return stripSlashes;
},
get addAliases() {
return addAliases;
},
__esModule: true
};
});
191 changes: 191 additions & 0 deletions dist/cjs/can-connect-feathers.js

Large diffs are not rendered by default.

27 changes: 27 additions & 0 deletions dist/cjs/utils.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
/*can-connect-feathers@0.6.8#utils*/
'use strict';
function stripSlashes(location) {
return location.replace(/^(\/*)|(\/*)$/g, '');
}
function addAliases(service) {
service.find = service.getListData;
service.get = service.getData;
service.create = service.createData;
service.update = service.updateData;
service.patch = service.patchData;
service.remove = service.destroyData;
return service;
}
Object.defineProperties(module.exports, {
stripSlashes: {
get: function () {
return stripSlashes;
}
},
addAliases: {
get: function () {
return addAliases;
}
},
__esModule: { value: true }
});
319 changes: 319 additions & 0 deletions dist/global/can-connect-feathers.js

Large diffs are not rendered by default.

0 comments on commit acedf18

Please sign in to comment.