Outlook_Addin_LLM/node_modules/@fluentui/react-utilities/lib/utils/getRTLSafeKey.js

19 lines
424 B
JavaScript
Raw Normal View History

/**
* @internal
* Finds and swaps a provided key for it's right to left format.
*/ export const getRTLSafeKey = (key, dir)=>{
if (dir === 'rtl') {
switch(key){
case 'ArrowLeft':
{
return 'ArrowRight';
}
case 'ArrowRight':
{
return 'ArrowLeft';
}
}
}
return key;
};