Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

beammeup

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

beammeup - npm Package Compare versions

Comparing version 0.0.1 to 0.0.2

README.md

20

package.json
{
"name": "beammeup",
"version": "0.0.1",
"version": "0.0.2",
"description": "RMI for node.js",

@@ -15,3 +15,3 @@ "main": "index.js",

"dependencies": {
"@types/express": "^4.0.39",
"@types/express": "^4.11.0",
"r2": "^2.0.0"

@@ -23,18 +23,18 @@ },

"devDependencies": {
"body-parser": "^1.18.2",
"cors": "^2.8.4",
"chai-as-promised": "^7.1.1",
"@types/chai": "^4.0.8",
"@types/chai": "^4.1.0",
"@types/chai-as-promised": "^7.1.0",
"@types/mocha": "^2.2.44",
"@types/mocha": "^2.2.46",
"babel-core": "^6.26.0",
"body-parser": "^1.18.2",
"chai": "^4.1.2",
"es6-promise": "^4.1.1",
"mocha": "^4.0.1",
"chai-as-promised": "^7.1.1",
"cors": "^2.8.4",
"es6-promise": "^4.2.2",
"mocha": "^4.1.0",
"node-dev": "^3.1.3",
"ts-node": "^3.3.0",
"typescript": "^2.6.2",
"wallaby-webpack": "^3.9.3",
"wallaby-webpack": "^3.9.4",
"webpack": "^3.10.0"
}
}

@@ -54,2 +54,17 @@ "use strict";

});
BrowserStub.attach = function (url) {
return __awaiter(this, void 0, void 0, function () {
var stub, remote;
return __generator(this, function (_a) {
switch (_a.label) {
case 0:
stub = new BrowserStub(url);
return [4 /*yield*/, stub.attach()];
case 1:
remote = _a.sent();
return [2 /*return*/, remote];
}
});
});
};
BrowserStub.prototype.attach = function () {

@@ -76,17 +91,2 @@ return __awaiter(this, void 0, void 0, function () {

};
BrowserStub.attach = function (url) {
return __awaiter(this, void 0, void 0, function () {
var stub, remote;
return __generator(this, function (_a) {
switch (_a.label) {
case 0:
stub = new BrowserStub(url);
return [4 /*yield*/, stub.attach()];
case 1:
remote = _a.sent();
return [2 /*return*/, remote];
}
});
});
};
BrowserStub.prototype.convertStub = function (object) {

@@ -93,0 +93,0 @@ var _this = this;

"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
function getExecutionParameters(serverObject, path) {
function getExecutionParameters(remoteObject, method_path) {
var method;
var execution_context = serverObject;
path.forEach(function (p) {
var execution_context = remoteObject;
method_path.forEach(function (p) {
execution_context = method /*?*/;
method = serverObject[p]; /*?*/
serverObject = serverObject[p];
method = remoteObject[p]; /*?*/
remoteObject = remoteObject[p];
});

@@ -11,0 +11,0 @@ return [execution_context, method]; /*?*/

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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc