/** * Simple math utility functions */ /** * Adds 2 and 2 together * @returns The sum of 2 + 2 * @example * const result = addTwoPlusTwo(); * console.log(result); // Output: 4 */ export const addTwoPlusTwo = () => { return 2 + 2; }; //# sourceMappingURL=math.js.map