be84825b1be7114982636905af2e5c1c9587b959
[platform/framework/web/crosswalk-tizen.git] /
1 'use strict';
2
3 module.exports = function (t, a) {
4         a.deep(t({ 1: 1, 2: 2, 3: 3 }, function (key, value) {
5                 return 'x' + (key + value);
6         }), { x11: 1, x22: 2, x33: 3 });
7 };