flatten.js 143 B

12345
  1. "use strict";
  2. module.exports = function (t, a) {
  3. a.deep(t({ a: { aa: 1, ab: 2 }, b: { ba: 3, bb: 4 } }), { aa: 1, ab: 2, ba: 3, bb: 4 });
  4. };