is-implemented.js 149 B

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