JSPM

  • Created
  • Published
  • Downloads 807055
  • Score
    100M100P100Q187864F
  • License MIT

Framework for transforming cascading style sheets (CSS) from left-to-right (LTR) to right-to-left (RTL)

Package Exports

  • rtlcss

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (rtlcss) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

RTLCSS

Framework for transforming cascading style sheets (CSS) from left-to-right (LTR) to right-to-left (RTL).

Install

npm install rtlcss

Usage

var rtlcss = require('rtlcss');
var result = rtlcss.process("body { direction:ltr; }");
//result == body { direction:rtl; }

Features

TBD