to-uint32.js #1

  • //
  • guest/
  • jen_bottom/
  • ember/
  • tutorial/
  • testapp/
  • node_modules/
  • es5-ext/
  • test/
  • number/
  • to-uint32.js
  • View
  • Commits
  • Open Download .zip Download (198 B)
"use strict";

module.exports = function (t, a) {
	a(t({}), 0, "Not numeric");
	a(t(-4), 4294967292, "Negative");
	a(t(133432), 133432, "Positive");
	a(t(8589934592), 0, "Greater than maximum");
};
# Change User Description Committed
#1 23539 jenbottom Adding the basic code for ember test appk, created with 'ember new' command