diff options
Diffstat (limited to 'node_modules/es5-ext/math/hypot/is-implemented.js')
-rw-r--r-- | node_modules/es5-ext/math/hypot/is-implemented.js | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/node_modules/es5-ext/math/hypot/is-implemented.js b/node_modules/es5-ext/math/hypot/is-implemented.js deleted file mode 100644 index d317bc7e5..000000000 --- a/node_modules/es5-ext/math/hypot/is-implemented.js +++ /dev/null @@ -1,7 +0,0 @@ -"use strict"; - -module.exports = function () { - var hypot = Math.hypot; - if (typeof hypot !== "function") return false; - return hypot(3, 4) === 5; -}; |