ffbf094e6b3447598d2b60b60b2a6c081d08fa02
[platform/framework/web/crosswalk-tizen.git] /
1 'use strict';
2
3 module.exports = function () {
4         var fround = Math.fround;
5         if (typeof fround !== 'function') return false;
6         return fround(1.337) === 1.3370000123977661;
7 };