3b106d5d5358586aaee51a30bc9f013a44c3bcc6
[platform/framework/web/crosswalk-tizen.git] /
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 };