mirror of
https://github.com/documentationjs/documentation.git
synced 2026-01-18 14:17:30 +00:00
11 lines
224 B
JavaScript
11 lines
224 B
JavaScript
/* eslint-disable */
|
|
|
|
/**
|
|
* This function returns the number one.
|
|
*/
|
|
function addThem(a: number, b: string, c: ?boolean, d: Array<number>, e: Object, f: Named): number {
|
|
return a + b + c + d + e;
|
|
};
|
|
|
|
/* eslint-enable */
|