export function attach(x: Function, ...prefix: any[]): Function {
  return (...args: any[]) => x(...prefix, ...args);
}