├── README.md ├── .gitignore └── package.json /README.md: -------------------------------------------------------------------------------- 1 | # react-accessible-ellipsis 2 | 3 | Deprecated 4 | 5 | Just use CSS `-webkit-line-clamp` instead because even Firefox supports that despite the `-webkit-` prefix. 6 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .vscode 2 | 3 | # dependencies 4 | node_modules 5 | 6 | # testing 7 | coverage 8 | 9 | # typescript 10 | .tscache 11 | 12 | # misc 13 | .DS_Store 14 | .env.local 15 | .env.development.local 16 | .env.test.local 17 | .env.production.local 18 | 19 | npm-debug.log* 20 | yarn-debug.log* 21 | yarn-error.log* 22 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "react-accessible-ellipsis", 3 | "version": "2020.0.0", 4 | "description": "Just use CSS `-webkit-line-clamp` instead because even Firefox supports that despite the `-webkit-` prefix.", 5 | "repository": { 6 | "type": "git", 7 | "url": "https://github.com/springload/react-accessible-ellipsis/" 8 | } 9 | } 10 | --------------------------------------------------------------------------------