is-arguments.js #1

  • //
  • guest/
  • jen_bottom/
  • ember/
  • tutorial/
  • testapp/
  • node_modules/
  • es5-ext/
  • test/
  • function/
  • is-arguments.js
  • View
  • Commits
  • Open Download .zip Download (288 B)
"use strict";

module.exports = function (t, a) {
	var args, dummy;
	args = (function () {
 return arguments;
}());
	dummy = { 0: 1, 1: 2 };
	Object.defineProperty(dummy, "length", { value: 2 });
	a(t(args), true, "Arguments");
	a(t(dummy), false, "Dummy");
	a(t([]), false, "Array");
};
# Change User Description Committed
#1 23539 jenbottom Adding the basic code for ember test appk, created with 'ember new' command