This repository has been archived on 2026-03-28. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
StasisWarden-Legacy/node_modules/ink/build/get-max-width.js
T

10 lines
398 B
JavaScript

import Yoga from 'yoga-layout';
const getMaxWidth = (yogaNode) => {
return (yogaNode.getComputedWidth() -
yogaNode.getComputedPadding(Yoga.EDGE_LEFT) -
yogaNode.getComputedPadding(Yoga.EDGE_RIGHT) -
yogaNode.getComputedBorder(Yoga.EDGE_LEFT) -
yogaNode.getComputedBorder(Yoga.EDGE_RIGHT));
};
export default getMaxWidth;
//# sourceMappingURL=get-max-width.js.map