is-implemented.js #1

  • //
  • guest/
  • jen_bottom/
  • ember/
  • tutorial/
  • testapp/
  • node_modules/
  • es5-ext/
  • math/
  • tanh/
  • is-implemented.js
  • View
  • Commits
  • Open Download .zip Download (195 B)
"use strict";

module.exports = function () {
	var tanh = Math.tanh;
	if (typeof tanh !== "function") return false;
	return (tanh(1) === 0.7615941559557649) && (tanh(Number.MAX_VALUE) === 1);
};
# Change User Description Committed
#1 23539 jenbottom Adding the basic code for ember test appk, created with 'ember new' command