Converts CSS stylesheets between left-to-right and right-to-left.
Based the original CSSJanus Google project.
npm install cssjanus
var cssjanus = require( 'cssjanus' );
var rtlCss = cssjanus.transform( ltrCss );
transform( css, swapLtrRtlInUrl, swapLeftRightInUrl )
css
(String) Stylesheet to transformswapLtrRtlInUrl
(Boolean) Swap 'ltr' and 'rtl' in URLsswapLeftRightInUrl
(Boolean) Swap 'left' and 'right' in URLs
Use a /* @noflip */
comment to protect a rule from being changed.
.rule1 {
/* Will be converted to margin-right */
margin-left: 1em;
}
/* @noflip */
.rule2 {
/* Will be preserved as margin-left */
margin-left: 1em;
}