加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
checkenv.js 285 Bytes
一键复制 编辑 原始数据 按行查看 历史
be5invis 提交于 2023-04-23 20:54 . Release 0.40.6
const which = require("which");
function check(util) {
try {
which.sync(util);
console.error(`External dependency <${util}> is present.`);
} catch (e) {
console.error(`External dependency <${util}> not found.`);
}
}
check("otc2otf");
check("otf2ttf");
check("ttfautohint");
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化