mirror of
https://github.com/Snigdha-OS/documentation.git
synced 2025-09-06 19:15:12 +02:00
8 lines
161 B
JavaScript
8 lines
161 B
JavaScript
'use strict';
|
|
var round = Math.round;
|
|
|
|
module.exports = function (it) {
|
|
var value = round(it);
|
|
return value < 0 ? 0 : value > 0xFF ? 0xFF : value & 0xFF;
|
|
};
|