f9cc09c01b39330e498730067f89247f2a3f80e6
[platform/framework/web/crosswalk-tizen.git] /
1 'use strict';
2
3 module.exports = function (t, a) {
4         var obj = { 1: 1, 2: 2, 3: 3 };
5         a.deep(t(obj, function (value, key, context) {
6                 a(context, obj, "Context argument");
7                 return (value + 1) + key;
8         }), { 1: '21', 2: '32', 3: '43' });
9 };