MCPcopy Create free account
hub / github.com/codemistic/Web-Development / scale

Function scale

Pokedex/script.js:27–29  ·  view source on GitHub ↗
(num, in_min, in_max, out_min, out_max)

Source from the content-addressed store, hash-verified

25}
26
27const scale = (num, in_min, in_max, out_min, out_max) => {
28 return ((num - in_min) * (out_max - out_min)) / (in_max - in_min) + out_min
29 }
30
31// API Call
32

Callers 1

countFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected