autopilot-sdk
Advanced tools
Comparing version 0.0.9 to 0.0.10
@@ -141,16 +141,17 @@ 'use strict'; | ||
var methods = exports.methods = function methods(thisArg) { | ||
/** setup `this` with values: | ||
* - id | ||
* - parent | ||
* - method | ||
* - single | ||
*/ | ||
console.log('....'); | ||
return { | ||
save: save.bind(thisArg), | ||
get: get.bind(thisArg), | ||
delete: del.bind(thisArg), | ||
unsubscribe: unsubscribe.bind(thisArg) | ||
}; | ||
return ( | ||
/** setup `this` with values: | ||
* - id | ||
* - parent | ||
* - method | ||
* - single | ||
*/ | ||
{ | ||
save: save.bind(thisArg), | ||
get: get.bind(thisArg), | ||
delete: del.bind(thisArg), | ||
unsubscribe: unsubscribe.bind(thisArg) | ||
} | ||
); | ||
}; | ||
//# sourceMappingURL=methods.js.map |
@@ -105,3 +105,3 @@ import utils, { parse, getVariables } from './utils'; | ||
export const methods = (thisArg) => { | ||
export const methods = thisArg => ( | ||
/** setup `this` with values: | ||
@@ -113,4 +113,3 @@ * - id | ||
*/ | ||
console.log('....'); | ||
return { | ||
{ | ||
save: save.bind(thisArg), | ||
@@ -120,3 +119,3 @@ get: get.bind(thisArg), | ||
unsubscribe: unsubscribe.bind(thisArg), | ||
}; | ||
}; | ||
} | ||
); |
{ | ||
"name": "autopilot-sdk", | ||
"description": "Node SDK for Autopilot", | ||
"version": "0.0.9", | ||
"version": "0.0.10", | ||
"author": "Samuel Amoah <sa.am@programmer.net>", | ||
@@ -6,0 +6,0 @@ "keywords": [ |
Sorry, the diff of this file is not supported yet
34634