Files
powerpoint-toolbox/node_modules/@fluentui/react-utilities/lib/utils/getRTLSafeKey.js
T
2025-03-07 19:22:02 +01:00

19 lines
424 B
JavaScript

/**
* @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;
};