mirror of
https://gitlab.com/octtspacc/staticoso
synced 2025-04-05 13:51:10 +02:00
6 lines
187 B
JavaScript
6 lines
187 B
JavaScript
// 20.2.2.14 Math.expm1(x)
|
|
var $export = require('./_export');
|
|
var $expm1 = require('./_math-expm1');
|
|
|
|
$export($export.S + $export.F * ($expm1 != Math.expm1), 'Math', { expm1: $expm1 });
|