Files

15 lines
298 B
Plaintext
Raw Permalink Normal View History

2025-08-18 09:11:51 +08:00
var getLineWidthFlex = function getLineWidthFlex(textPosition, text) {
if (!text) {
return [1, 0];
}
if (textPosition === 'left') {
return [1, 5];
}
if (textPosition === 'right') {
return [5, 1];
}
return [1, 1];
};
export default {
getLineWidthFlex: getLineWidthFlex
};