mirror of
https://github.com/documentationjs/documentation.git
synced 2026-01-25 14:26:29 +00:00
Waiting on an answer in https://github.com/babel/babel/issues/2543 because tests will currently fail.
8 lines
162 B
JavaScript
8 lines
162 B
JavaScript
/**
|
|
* This function returns the number one.
|
|
* @param {number} b the second param
|
|
*/
|
|
function addThem(a, b, c, { d, e, f }) {
|
|
return a + b + c + d + e + f;
|
|
}
|