MCPcopy Create free account
hub / github.com/Moddable-OpenSource/moddable / formatValue

Function formatValue

examples/drivers/m5stack-imu/main.js:135–141  ·  view source on GitHub ↗
(value)

Source from the content-addressed store, hash-verified

133
134
135function formatValue(value) {
136 if (!value)
137 return value;
138 if (value < 0)
139 return value.toFixed(3);
140 return "+" + value.toFixed(3);
141}
142
143function drawBar(label, value, x, y, width, height) {
144 const halfWidth = width >> 1;

Callers 1

drawBarFunction · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected