remove now unused decomposeUci

pull/6843/head
Niklas Fiekas 2020-06-18 22:36:58 +02:00
parent cfb2fa7b41
commit 88962c9aef
1 changed files with 0 additions and 4 deletions

View File

@ -6,10 +6,6 @@ export function fixCrazySan(san: San): San {
return san[0] === 'P' ? san.slice(1) : san;
}
export function decomposeUci(uci: Uci): [string, Key, string] {
return [uci.slice(0, 2), uci.slice(2, 4) as Key, uci.slice(4, 5)];
}
export interface Dests {
[square: string]: Key[];
}