antd-mobile
Version:
<img src="https://gw.alipayobjects.com/mdn/rms_ee68a8/afts/img/A*hjjDS5Yy-ooAAAAAAAAAAAAAARQnAQ" alt="logo" width="100%" />
22 lines (19 loc) • 508 B
JavaScript
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.normalizePlacement = normalizePlacement;
const record = {
'topLeft': 'top-start',
'topRight': 'top-end',
'bottomLeft': 'bottom-start',
'bottomRight': 'bottom-end',
'leftTop': 'left-start',
'leftBottom': 'left-end',
'rightTop': 'right-start',
'rightBottom': 'right-end'
};
function normalizePlacement(placement) {
var _a;
return (_a = record[placement]) !== null && _a !== void 0 ? _a : placement;
}
;