# Object

## util.Object.pile

    // result: [ [{a: 0}, {b: 1}], [{c: 2}] ];
    util.Object.pile(2, {a: 0, b: 1, c: 2});

## util.Object.rename

    // result: { b: 1, d: 2}
    util.Array.rename({ a: 'b', c: 'd' }, { a: 1, c: 2});
