Kargi-Sitesi/node_modules/selenium-webdriver/lib/test/data/screen/screen.js

7 lines
169 B
JavaScript
Raw Normal View History

2024-11-03 21:30:09 -05:00
function toColor(num) {
num >>>= 0;
var b = num & 0xFF,
g = (num & 0xFF00) >>> 8,
r = (num & 0xFF0000) >>> 16;
return "rgb(" + [r, g, b].join(",") + ")";
}