(path: string)
| 968 | const extension = selectFolderEntryExtension(collection); |
| 969 | |
| 970 | const getEntryValue = async (path: string) => { |
| 971 | const loadedEntry = await this.implementation.getEntry(path); |
| 972 | let entry = createEntry(collection.get('name'), slug, loadedEntry.file.path, { |
| 973 | raw: loadedEntry.data, |
| 974 | label, |
| 975 | mediaFiles: [], |
| 976 | meta: { path: prepareMetaPath(loadedEntry.file.path, collection) }, |
| 977 | }); |
| 978 | |
| 979 | entry = this.entryWithFormat(collection)(entry); |
| 980 | entry = await this.processEntry(state, collection, entry); |
| 981 | |
| 982 | return entry; |
| 983 | }; |
| 984 | |
| 985 | let entryValue: EntryValue; |
| 986 | if (hasI18n(collection)) { |
nothing calls this directly
no test coverage detected