blob: ffbf094e6b3447598d2b60b60b2a6c081d08fa02 [file] [log] [blame]
'use strict';
module.exports = function () {
var fround = Math.fround;
if (typeof fround !== 'function') return false;
return fround(1.337) === 1.3370000123977661;
};