flatten.js 145 B

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