sixel-check/index.js
2025-11-14 16:31:20 -07:00

10 lines
263 B
JavaScript
Executable File

#!/usr/bin/env node
const supportsSixel = require("supports-sixel");
(async () => {
const isSupported = await supportsSixel();
//console.log(isSupported ? "Sixels are supported!" : "Sixels aren't supported!");
process.exitCode = isSupported ? 0 : 1
})();