| 1 |
export const cachedSpaces=new Array(20).fill(0).map(((r,e)=>" ".repeat(e)));const maxCachedValues=200;export const cachedBreakLinesWithSpaces={" ":{"\n":new Array(200).fill(0).map(((r,e)=>"\n"+" ".repeat(e))),"\r":new Array(200).fill(0).map(((r,e)=>"\r"+" ".repeat(e))),"\r\n":new Array(200).fill(0).map(((r,e)=>"\r\n"+" ".repeat(e)))},"\t":{"\n":new Array(200).fill(0).map(((r,e)=>"\n"+"\t".repeat(e))),"\r":new Array(200).fill(0).map(((r,e)=>"\r"+"\t".repeat(e))),"\r\n":new Array(200).fill(0).map(((r,e)=>"\r\n"+"\t".repeat(e)))}};export const supportedEols=["\n","\r","\r\n"]; |