Newer
Older
vmk-demo-bot / frontend / node_modules / es5-ext / math / hypot / is-implemented.js
@eugene-sukhodolskiy eugene-sukhodolskiy 18 days ago 149 bytes init
"use strict";

module.exports = function () {
	var hypot = Math.hypot;
	if (typeof hypot !== "function") return false;
	return hypot(3, 4) === 5;
};