map.js #1

  • //
  • guest/
  • jen_bottom/
  • ember/
  • tutorial/
  • testapp/
  • node_modules/
  • es5-ext/
  • test/
  • object/
  • map.js
  • View
  • Commits
  • Open Download .zip Download (238 B)
"use strict";

module.exports = function (t, a) {
	var obj = { 1: 1, 2: 2, 3: 3 };
	a.deep(t(obj, function (value, key, context) {
		a(context, obj, "Context argument");
		return (value + 1) + key;
	}), { 1: "21", 2: "32", 3: "43" });
};
# Change User Description Committed
#1 23539 jenbottom Adding the basic code for ember test appk, created with 'ember new' command