mirror of
https://github.com/tvytlx/ai-agent-deep-dive.git
synced 2026-04-04 16:14:50 +08:00
Add extracted source directory and README navigation
This commit is contained in:
29
extracted-source/node_modules/jsonc-parser/lib/esm/impl/string-intern.js
generated
vendored
Normal file
29
extracted-source/node_modules/jsonc-parser/lib/esm/impl/string-intern.js
generated
vendored
Normal file
@@ -0,0 +1,29 @@
|
||||
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'];
|
||||
Reference in New Issue
Block a user