projecte_ionic/node_modules/selenium-webdriver/lib/test/data/screen/screen.js
2022-02-09 18:30:03 +01:00

7 lines
No EOL
169 B
JavaScript
Executable file

function toColor(num) {
num >>>= 0;
var b = num & 0xFF,
g = (num & 0xFF00) >>> 8,
r = (num & 0xFF0000) >>> 16;
return "rgb(" + [r, g, b].join(",") + ")";
}