bdd2d98c9d37fb123d19b04c8363acd0b7fb6b2f8b8b3851f1a2fd5cb72d32a0e0370fa2ba3a7a1c18295b59d0628c5c759f7554e96e3ded91174a76e6d6a9 161 B

1234567
  1. 'use strict';
  2. var round = Math.round;
  3. module.exports = function (it) {
  4. var value = round(it);
  5. return value < 0 ? 0 : value > 0xFF ? 0xFF : value & 0xFF;
  6. };