import Assert from '@cafetextual/util/dist/src/assert/Assert'; import fs from 'fs' export function saveFile(fullPath:string,txt:string) { fs.writeFileSync(fullPath, txt); console.log("The file was saved " + fullPath); } function saveJSON(savePath:string, series:string, name:string, data:any) { var txt = JSON.stringify(data); var fullPath = savePath + '/' + series + "/" + name + ".json"; fs.writeFileSync(fullPath, txt) }