]> git.r.bdr.sh - rbdr/dotfiles/blob
3b106d5d5358586aaee51a30bc9f013a44c3bcc6
[rbdr/dotfiles] /
1 'use strict';
2
3 module.exports = function () {
4 var expm1 = Math.expm1;
5 if (typeof expm1 !== 'function') return false;
6 return expm1(1).toFixed(15) === '1.718281828459045';
7 };