UNPKG

rsuite

Version:

A suite of react components

11 lines (10 loc) 256 B
/** * placementPolyfill('bottomLeft'); * output 'bottomStart' */ export default (function (placement) { if (typeof placement === 'string') { return placement.replace(/Left|Top/, 'Start').replace(/Right|Bottom/, 'End'); } return placement; });