mirror of
https://github.com/vrtmrz/obsidian-livesync.git
synced 2026-07-23 13:02:58 +00:00
4 lines
182 B
TypeScript
4 lines
182 B
TypeScript
export function hasExactCaseOnlyRename(entries: readonly string[], oldName: string, newName: string): boolean {
|
|
return entries.includes(newName) && !entries.includes(oldName);
|
|
}
|