14 lines
277 B
JavaScript
14 lines
277 B
JavaScript
/**
|
|
* 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
|