⚝
One Hat Cyber Team
⚝
Your IP:
216.73.216.1
Server IP:
185.238.29.86
Server:
Linux server2 6.8.12-6-pve #1 SMP PREEMPT_DYNAMIC PMX 6.8.12-6 (2024-12-19T19:05Z) x86_64
Server Software:
nginx/1.18.0
PHP Version:
8.1.31
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
var
/
www
/
invoice
/
node_modules
/
es5-ext
/
math
/
sinh
/
View File Name :
shim.js
// Parts of implementation taken from es6-shim project // See: https://github.com/paulmillr/es6-shim/blob/master/es6-shim.js "use strict"; var expm1 = require("../expm1") , abs = Math.abs , exp = Math.exp , e = Math.E; module.exports = function (value) { if (isNaN(value)) return NaN; value = Number(value); if (value === 0) return value; if (!isFinite(value)) return value; if (abs(value) < 1) return (expm1(value) - expm1(-value)) / 2; return ((exp(value - 1) - exp(-value - 1)) * e) / 2; };