Source: test-doc.js

/**
 * Test module for JSDoc documentation
 * @module testDoc
 */

/**
 * A simple test function
 * @function testFunction
 * @param {string} message - The message to log
 * @returns {string} The processed message
 */
export function testFunction(message) {
    return `Hello: ${message}`;
}

/**
 * Another test function
 * @function anotherFunction
 * @param {number} num - A number
 * @returns {number} The number doubled
 */
export function anotherFunction(num) {
    return num * 2;
}