Мне нужно получить неразрушенные параметры внутри функции. Какой будет лучший способ?
const foo = ({url, options, header, body, auth = 1}) => {
//...do things with the parameters...
let params = {url, options, header, body, auth}; // Is there an easy way?
bar(params);
}