export const makeArray = (...args) => { // No context! args.pop(); return args; }; export const log = (...args) => console.log(...args);