Skip to content

Commit 6056bea

Browse files
Removed all @Date tags from JSDOC (#38)
1 parent 345b559 commit 6056bea

11 files changed

+0
-12
lines changed

src/13/diff.ts

-1
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,6 @@ export function lcs(s1: string, s2: string): string[] {
8383

8484
/**
8585
* The function finds the LCS between two array of strings and returns the LCS along with the differences.
86-
* @date 8/13/2023 - 2:03:31 PM
8786
*
8887
* @export
8988
* @param {string[]} arr1

src/16/command-types.ts

-1
Original file line numberDiff line numberDiff line change
@@ -162,7 +162,6 @@ export enum IRCReplies {
162162

163163
/**
164164
* ":No recipient given (`<command>`)"
165-
* @date 8/17/2023 - 4:15:03 PM
166165
*/
167166
ERR_NORECIPIENT = '411',
168167

src/17/command.ts

-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,6 @@ export interface IMemCommand {
3434
/**
3535
* Number of bytes for the data.
3636
* This is used in set, add and replace command.
37-
* @date 8/18/2023 - 9:14:01 PM
3837
*
3938
* @type {?number}
4039
*/

src/21/sed.ts

-1
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,6 @@ class SedInput {
7676

7777
/**
7878
* Carrying out a regular expression change to it
79-
* @date 9/10/2023 - 11:30:02 PM
8079
*
8180
* @type {?{
8281
pattern: string;

src/25/server.ts

-2
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,6 @@ export default class NATSServer {
2828
/**
2929
* The net.Server instance on which the NATS server will start listening to
3030
* connections.
31-
* @date 9/21/2023 - 11:48:59 AM
3231
*
3332
* @type {net.Server}
3433
*/
@@ -37,7 +36,6 @@ export default class NATSServer {
3736
/**
3837
* A map of clients where the key is created using the remoteAddress and
3938
* remotePort of the net.Socket instance.
40-
* @date 9/21/2023 - 11:48:02 AM
4139
*
4240
* @private
4341
* @type {Map<string, Client>}

src/6/random_sort.ts

-1
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,6 @@ function computeHash(str: string): number {
5353
/**
5454
* Given an array of number, this function randomly shuffles it's content and
5555
* returns the new shuffled array.
56-
* @date 7/28/2023 - 6:12:23 PM
5756
*
5857
* @param {number[]} arr
5958
* @returns {number[]}

src/7/postfix.ts

-1
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,6 @@ export class Postfix {
4646

4747
/**
4848
* Number of operands encountered till `this.pos`
49-
* @date 9/1/2023 - 1:44:00 PM
5049
*
5150
* @private
5251
* @type {number}

src/8/benchmark.ts

-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,6 @@ const randomString = () => randomBytes(size).toString('ascii');
2020
* benchmark: This function returns a Promise that resolves various commands from the client library.
2121
*
2222
* teardown: The function returns a Promise that disconnects the client.
23-
* @date 8/3/2023 - 11:55:07 AM
2423
*
2524
* @async
2625
* @returns {unknown}

src/8/redis_deserializer.ts

-1
Original file line numberDiff line numberDiff line change
@@ -254,7 +254,6 @@ export class RedisDeserializer implements IRedisDeserializer {
254254
/**
255255
* Consumes the given token if provided.
256256
* Increments the index.
257-
* @date 7/29/2023 - 6:59:12 PM
258257
*
259258
* @private
260259
* @param {?string} [token]

src/8/redis_serializer.ts

-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,6 @@ export interface IRedisSerializer {
2424
/**
2525
* This function checks whether the input has a valid RESP Type.
2626
* If the input provided is a nested data structure, it recursively checks all the elements.
27-
* @date 7/29/2023 - 7:00:14 PM
2827
*
2928
* @param {unknown} input
3029
* @returns {boolean}

src/8/redis_server.ts

-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@ interface IRedisServer {
1515

1616
/**
1717
* The port on which the Redis Server will start listening to messages.
18-
* @date 8/3/2023 - 1:00:36 PM
1918
*
2019
* @type {number}
2120
*/

0 commit comments

Comments
 (0)