INNER CODE UNIT · JavaScript
clamp
CloudWise-OpenSource/FlyFish · lcapCodeServer/macos/lib/vscode/extensions/image-preview/media/main.js:15
function clamp(value, min, max) {
return Math.min(Math.max(value, min), max);
}
function getSettings() {
const element = document.getElementById('image-preview-settings');
if (element) {
const data = element.getAttribute('data-settings');
if (data) {
return JSON.parse(data);
}
}
throw new Error(`Could not load settings`);
}
/**
* Enable image-rendering: pixelated for images scaled by more than this.