0a5ab058a6
- Angular 12 application with PrimeNG components - 5 existing Cypress e2e test suites - SCSS styling with BEM naming convention - i18n support (10 languages) - Leaflet map integration - Complete component hierarchy and routing structure This baseline will be used for Angular → React migration.
20 lines
520 B
JavaScript
20 lines
520 B
JavaScript
'use strict';
|
|
|
|
var ToNumber = require('./ToNumber');
|
|
var floor = require('./floor');
|
|
|
|
var $isNaN = require('math-intrinsics/isNaN');
|
|
|
|
// https://262.ecma-international.org/6.0/#sec-touint8clamp
|
|
|
|
module.exports = function ToUint8Clamp(argument) {
|
|
var number = ToNumber(argument);
|
|
if ($isNaN(number) || number <= 0) { return 0; }
|
|
if (number >= 0xFF) { return 0xFF; }
|
|
var f = floor(number);
|
|
if (f + 0.5 < number) { return f + 1; }
|
|
if (number < f + 0.5) { return f; }
|
|
if (f % 2 !== 0) { return f + 1; }
|
|
return f;
|
|
};
|