mirror of https://github.com/ghostfolio/ghostfolio
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
1.0 KiB
29 lines
1.0 KiB
export const cachedSpaces = new Array(20).fill(0).map((_, index) => {
|
|
return ' '.repeat(index);
|
|
});
|
|
const maxCachedValues = 200;
|
|
export const cachedBreakLinesWithSpaces = {
|
|
' ': {
|
|
'\n': new Array(maxCachedValues).fill(0).map((_, index) => {
|
|
return '\n' + ' '.repeat(index);
|
|
}),
|
|
'\r': new Array(maxCachedValues).fill(0).map((_, index) => {
|
|
return '\r' + ' '.repeat(index);
|
|
}),
|
|
'\r\n': new Array(maxCachedValues).fill(0).map((_, index) => {
|
|
return '\r\n' + ' '.repeat(index);
|
|
}),
|
|
},
|
|
'\t': {
|
|
'\n': new Array(maxCachedValues).fill(0).map((_, index) => {
|
|
return '\n' + '\t'.repeat(index);
|
|
}),
|
|
'\r': new Array(maxCachedValues).fill(0).map((_, index) => {
|
|
return '\r' + '\t'.repeat(index);
|
|
}),
|
|
'\r\n': new Array(maxCachedValues).fill(0).map((_, index) => {
|
|
return '\r\n' + '\t'.repeat(index);
|
|
}),
|
|
}
|
|
};
|
|
export const supportedEols = ['\n', '\r', '\r\n'];
|
|
|