@mixvideo/jianying
Version:
剪映草稿文件工具包 - 解析、分析和生成剪映项目文件
15 lines (13 loc) • 373 B
JavaScript
import * as fs from 'fs';
// src/index.ts
function parse(filePath) {
if (!fs.existsSync(filePath)) {
throw new Error(`\u6587\u4EF6\u4E0D\u5B58\u5728: ${filePath}`);
}
const content = fs.readFileSync(filePath, "utf-8");
const draft = JSON.parse(content);
return draft;
}
export { parse };
//# sourceMappingURL=index.mjs.map
//# sourceMappingURL=index.mjs.map