10 lines
263 B
JavaScript
Executable File
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
|
|
})();
|