Fixed spaces and comma issue.
This commit is contained in:
parent
f6933b592d
commit
d10f3800e6
|
|
@ -46,7 +46,7 @@ class Folder_DocumentLoaders implements INode {
|
||||||
type: 'json',
|
type: 'json',
|
||||||
optional: true,
|
optional: true,
|
||||||
additionalParams: true
|
additionalParams: true
|
||||||
},
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -84,9 +84,9 @@ class Folder_DocumentLoaders implements INode {
|
||||||
'.rs': (path) => new TextLoader(path), // Rust
|
'.rs': (path) => new TextLoader(path), // Rust
|
||||||
'.scala': (path) => new TextLoader(path), // Scala
|
'.scala': (path) => new TextLoader(path), // Scala
|
||||||
'.sc': (path) => new TextLoader(path), // Scala
|
'.sc': (path) => new TextLoader(path), // Scala
|
||||||
'.scss': (path) => new TextLoader(path),// Sass
|
'.scss': (path) => new TextLoader(path), // Sass
|
||||||
'.sol': (path) => new TextLoader(path), // Solidity
|
'.sol': (path) => new TextLoader(path), // Solidity
|
||||||
'.sql': (path) => new TextLoader(path),//SQL
|
'.sql': (path) => new TextLoader(path), //SQL
|
||||||
'.swift': (path) => new TextLoader(path), // Swift
|
'.swift': (path) => new TextLoader(path), // Swift
|
||||||
'.markdown': (path) => new TextLoader(path), // Markdown
|
'.markdown': (path) => new TextLoader(path), // Markdown
|
||||||
'.md': (path) => new TextLoader(path), // Markdown
|
'.md': (path) => new TextLoader(path), // Markdown
|
||||||
|
|
@ -94,7 +94,7 @@ class Folder_DocumentLoaders implements INode {
|
||||||
'.ltx': (path) => new TextLoader(path), // LaTeX
|
'.ltx': (path) => new TextLoader(path), // LaTeX
|
||||||
'.html': (path) => new TextLoader(path), // HTML
|
'.html': (path) => new TextLoader(path), // HTML
|
||||||
'.vb': (path) => new TextLoader(path), // Visual Basic
|
'.vb': (path) => new TextLoader(path), // Visual Basic
|
||||||
'.xml': (path) => new TextLoader(path)// XML
|
'.xml': (path) => new TextLoader(path) // XML
|
||||||
})
|
})
|
||||||
let docs = []
|
let docs = []
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue