增加晶全app静态页面
This commit is contained in:
11
node_modules/es5-ext/math/cosh/shim.js
generated
vendored
Normal file
11
node_modules/es5-ext/math/cosh/shim.js
generated
vendored
Normal file
@ -0,0 +1,11 @@
|
||||
"use strict";
|
||||
|
||||
var exp = Math.exp;
|
||||
|
||||
module.exports = function (value) {
|
||||
if (isNaN(value)) return NaN;
|
||||
value = Number(value);
|
||||
if (value === 0) return 1;
|
||||
if (!isFinite(value)) return Infinity;
|
||||
return (exp(value) + exp(-value)) / 2;
|
||||
};
|
Reference in New Issue
Block a user