is-value.js #1

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

module.exports = function (t, a) {
	a(t(), false);
	a(t(undefined), false);
	a(t(null), false);
	a(t(NaN), true);
	a(t(0), true);
	a(t(false), true);
	a(t("null"), true);
	a(t(""), true);
	a(t({}), true);
	a(t(Object.prototype), true);
};
# Change User Description Committed
#1 23539 jenbottom Adding the basic code for ember test appk, created with 'ember new' command