mikx1's picture
Upload folder using huggingface_hub
b5ea024
raw
history blame contribute delete
149 Bytes
"use strict";
module.exports = function () {
var hypot = Math.hypot;
if (typeof hypot !== "function") return false;
return hypot(3, 4) === 5;
};