various modular fixes

This commit is contained in:
AngelPashov
2018-06-01 16:16:43 +03:00
parent f207254238
commit 8492d94054
23 changed files with 605 additions and 612 deletions

View File

@@ -6,10 +6,10 @@ module.exports = class ParseResponse {
constructor(client, data) {
this.client = client;
this.data = data;
};
}
static go (client, data) {
const parseRensponse = new ParseResponse(client, data);
static go(client, data) {
// const parseRensponse = new ParseResponse(client, data);
const response = new Response(client, data);
// TODO:

View File

@@ -6,10 +6,10 @@ module.exports = class XMLSign {
constructor(client, data) {
this.client = client;
this.data = data;
};
}
static go (client, data) {
const xmlSigner = new XMLSign(client, data);
static go(client, data) {
// const xmlSigner = new XMLSign(client, data);
const signer = new Signer(client, data);
signer.digest();