is-implemented.js 171 B

1234567
  1. 'use strict';
  2. module.exports = function () {
  3. var fround = Math.fround;
  4. if (typeof fround !== 'function') return false;
  5. return fround(1.337) === 1.3370000123977661;
  6. };