CoolFace
Datasetpublic

basant307/AI_Governance_Project

sourceHugging Faceapache-2.0updated 2mo agoView on Hugging Face
0likes45downloads
sign.js12 linesDownload Raw Back to math-intrinsics
1'use strict';2 3var $isNaN = require('./isNaN');4 5/** @type {import('./sign')} */6module.exports = function sign(number) {7	if ($isNaN(number) || number === 0) {8		return number;9	}10	return number < 0 ? -1 : +1;11};12 
basant307/AI_Governance_Project · CoolFace