Merge branch 'pull/17'

# Conflicts:
#	src/App.vue
This commit is contained in:
MengYX
2020-02-05 01:38:34 +08:00
4 changed files with 69 additions and 8 deletions

View File

@@ -4,9 +4,8 @@ const RawDecrypt = require("./raw");
const MFlacDecrypt = require("./mflac");
const TmDecrypt = require("./tm");
export {CommonDecrypt}
async function CommonDecrypt(file) {
export async function CommonDecrypt(file) {
let raw_ext = file.name.substring(file.name.lastIndexOf(".") + 1, file.name.length).toLowerCase();
let raw_filename = file.name.substring(0, file.name.lastIndexOf("."));
let rt_data;