├── .all-contributorsrc ├── .gitattributes ├── .github ├── ISSUE_TEMPLATE.md └── PULL_REQUEST_TEMPLATE.md ├── .gitignore ├── .npmrc ├── .travis.yml ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── jest.config.js ├── other ├── CODE_OF_CONDUCT.md ├── EXAMPLES.md └── ROADMAP.md ├── package.json └── src ├── __tests__ └── index.js └── index.js /.all-contributorsrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TxHawks/bidi-css-js/HEAD/.all-contributorsrc -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TxHawks/bidi-css-js/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TxHawks/bidi-css-js/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TxHawks/bidi-css-js/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TxHawks/bidi-css-js/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TxHawks/bidi-css-js/HEAD/.npmrc -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TxHawks/bidi-css-js/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TxHawks/bidi-css-js/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TxHawks/bidi-css-js/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TxHawks/bidi-css-js/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TxHawks/bidi-css-js/HEAD/README.md -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TxHawks/bidi-css-js/HEAD/jest.config.js -------------------------------------------------------------------------------- /other/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TxHawks/bidi-css-js/HEAD/other/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /other/EXAMPLES.md: -------------------------------------------------------------------------------- 1 | # Examples 2 | -------------------------------------------------------------------------------- /other/ROADMAP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TxHawks/bidi-css-js/HEAD/other/ROADMAP.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TxHawks/bidi-css-js/HEAD/package.json -------------------------------------------------------------------------------- /src/__tests__/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TxHawks/bidi-css-js/HEAD/src/__tests__/index.js -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TxHawks/bidi-css-js/HEAD/src/index.js --------------------------------------------------------------------------------