Skip to content

Commit

Permalink
JSDoc update
Browse files Browse the repository at this point in the history
  • Loading branch information
shevchenkonik committed Jul 27, 2023
1 parent ddde60d commit 998ea50
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ interface Data {

/**
* Encode data
* @param {array} arr
* @param data
*/
function encode(data: Data) {
let encoding: number[] = [];
Expand All @@ -32,7 +32,7 @@ function encode(data: Data) {

/**
* Decode data
* @param {array} encoded
* @param data
*/
function decode(data: Data) {
let uncompressed: number[] = [];
Expand All @@ -51,7 +51,7 @@ function decode(data: Data) {
for (let i = 0; i < len; i++) {
uncompressed.push(value);
}
};
}

fillPolyfill(data[ind + 1], element);
} else {
Expand Down

0 comments on commit 998ea50

Please sign in to comment.