aboutsummaryrefslogtreecommitdiff
path: root/node_modules/es5-ext/math/log1p/is-implemented.js
blob: 7626ab47ef3b0896100eba174be3b84bdcb5c776 (plain)
1
2
3
4
5
6
7
"use strict";

module.exports = function () {
	var log1p = Math.log1p;
	if (typeof log1p !== "function") return false;
	return log1p(1) === 0.6931471805599453;
};