chore: update deciphers jsdoc

This commit is contained in:
LuanRT
2022-05-02 01:49:37 -03:00
parent 0cdfac1812
commit 75895e5492
3 changed files with 5 additions and 2 deletions

View File

@@ -11,7 +11,7 @@ class NToken {
/**
* Solves throttling challange by transforming the n token.
* @returns {string} transformed token.
* @returns {string}
*/
transform() {
let n_token = this.n.split('');
@@ -64,7 +64,7 @@ class NToken {
/**
* Takes the n-transform data, refines it, and then returns a readable json array.
* @returns {object}
* @returns {Array}
*/
#getTransformationData() {
const data = `[${Utils.getStringBetweenStrings(this.raw_code.replace(/\n/g, ''), 'c=[', '];c')}]`;

View File

@@ -12,6 +12,7 @@ class Signature {
/**
* Deciphers signature.
* @returns {string}
*/
decipher() {
const args = QueryString.parse(this.url);