Truncate a string by showing an ellipses in the middle
npm install angular-middle-ellipsesangular-middle-ellipses
=======================
> Truncate a string by showing an ellipses in the middle



Installation
------------
Install angular-middle-ellipses by running:
``sh`
$ npm install --save angular-middle-ellipses
Documentation
-------------
Add angular-middle-ellipses to your Angular module dependency list:
`js`
var MyApp = angular.module('MyApp', [
require('angular-middle-ellipses')
]);
Make use of the middleEllipses filter in a template by passing the desired maximum amount of characters as an argument:
`js`
{{ 'MyVeryLongString' | middleEllipses:9 }}`
*`
MyVe…ring
Support
-------
If you're having any problem, please raise an issue on GitHub and I'll be happy to help.
Tests
-----
Run the test suite by doing:
`sh`
$ npm test
Contribute
----------
- Issue Tracker: github.com/jviotti/angular-middle-ellipses/issues
- Source Code: github.com/jviotti/angular-middle-ellipses
Before submitting a PR, please make sure that you include tests, and that jshint runs without any warning:
`sh``
$ npm run lint
License
-------
The project is licensed under the MIT license.