until method name change

pull/375/head
jingjingxyk 3 years ago
parent 3959082715
commit 03e75b905c

@ -64,7 +64,7 @@ function getParameterValue(name) {
return ""; return "";
} }
function createJsonFile(content, filename) { function createJSONFile(content, filename) {
let blob = new Blob([JSON.stringify(content)], { type: "application/json" }); let blob = new Blob([JSON.stringify(content)], { type: "application/json" });
let url = window.URL.createObjectURL(blob); let url = window.URL.createObjectURL(blob);
let a = document.createElement("a"); let a = document.createElement("a");
@ -100,4 +100,5 @@ export {
getParameterValue, getParameterValue,
sleep, sleep,
getMediaDevices, getMediaDevices,
createJsonFile,
}; };

Loading…
Cancel
Save