Skip to content

Commit

Permalink
Removed all @Date tags from JSDOC (#38)
Browse files Browse the repository at this point in the history
  • Loading branch information
jainmohit2001 authored Oct 5, 2023
1 parent 345b559 commit 6056bea
Show file tree
Hide file tree
Showing 11 changed files with 0 additions and 12 deletions.
1 change: 0 additions & 1 deletion src/13/diff.ts
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,6 @@ export function lcs(s1: string, s2: string): string[] {

/**
* The function finds the LCS between two array of strings and returns the LCS along with the differences.
* @date 8/13/2023 - 2:03:31 PM
*
* @export
* @param {string[]} arr1
Expand Down
1 change: 0 additions & 1 deletion src/16/command-types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,6 @@ export enum IRCReplies {

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

Expand Down
1 change: 0 additions & 1 deletion src/17/command.ts
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,6 @@ export interface IMemCommand {
/**
* Number of bytes for the data.
* This is used in set, add and replace command.
* @date 8/18/2023 - 9:14:01 PM
*
* @type {?number}
*/
Expand Down
1 change: 0 additions & 1 deletion src/21/sed.ts
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,6 @@ class SedInput {

/**
* Carrying out a regular expression change to it
* @date 9/10/2023 - 11:30:02 PM
*
* @type {?{
pattern: string;
Expand Down
2 changes: 0 additions & 2 deletions src/25/server.ts
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,6 @@ export default class NATSServer {
/**
* The net.Server instance on which the NATS server will start listening to
* connections.
* @date 9/21/2023 - 11:48:59 AM
*
* @type {net.Server}
*/
Expand All @@ -37,7 +36,6 @@ export default class NATSServer {
/**
* A map of clients where the key is created using the remoteAddress and
* remotePort of the net.Socket instance.
* @date 9/21/2023 - 11:48:02 AM
*
* @private
* @type {Map<string, Client>}
Expand Down
1 change: 0 additions & 1 deletion src/6/random_sort.ts
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,6 @@ function computeHash(str: string): number {
/**
* Given an array of number, this function randomly shuffles it's content and
* returns the new shuffled array.
* @date 7/28/2023 - 6:12:23 PM
*
* @param {number[]} arr
* @returns {number[]}
Expand Down
1 change: 0 additions & 1 deletion src/7/postfix.ts
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,6 @@ export class Postfix {

/**
* Number of operands encountered till `this.pos`
* @date 9/1/2023 - 1:44:00 PM
*
* @private
* @type {number}
Expand Down
1 change: 0 additions & 1 deletion src/8/benchmark.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@ const randomString = () => randomBytes(size).toString('ascii');
* benchmark: This function returns a Promise that resolves various commands from the client library.
*
* teardown: The function returns a Promise that disconnects the client.
* @date 8/3/2023 - 11:55:07 AM
*
* @async
* @returns {unknown}
Expand Down
1 change: 0 additions & 1 deletion src/8/redis_deserializer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -254,7 +254,6 @@ export class RedisDeserializer implements IRedisDeserializer {
/**
* Consumes the given token if provided.
* Increments the index.
* @date 7/29/2023 - 6:59:12 PM
*
* @private
* @param {?string} [token]
Expand Down
1 change: 0 additions & 1 deletion src/8/redis_serializer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@ export interface IRedisSerializer {
/**
* This function checks whether the input has a valid RESP Type.
* If the input provided is a nested data structure, it recursively checks all the elements.
* @date 7/29/2023 - 7:00:14 PM
*
* @param {unknown} input
* @returns {boolean}
Expand Down
1 change: 0 additions & 1 deletion src/8/redis_server.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@ interface IRedisServer {

/**
* The port on which the Redis Server will start listening to messages.
* @date 8/3/2023 - 1:00:36 PM
*
* @type {number}
*/
Expand Down

0 comments on commit 6056bea

Please sign in to comment.