]> git.r.bdr.sh - rbdr/dotfiles/blob
e75c5d36be34c8860509e50c52f7af869277083c
[rbdr/dotfiles] /
1 'use strict';
2
3 module.exports = function () {
4 var hypot = Math.hypot;
5 if (typeof hypot !== 'function') return false;
6 return hypot(3, 4) === 5;
7 };