This repository has been archived on 2020-10-11. You can view files and clone it, but cannot push or open issues or pull requests.
angularjs-batarang/js/filters/first.js

7 lines
184 B
JavaScript
Raw Normal View History

2012-07-02 21:09:51 +00:00
// returns the first line of a multi-line string
2013-03-22 04:07:38 +00:00
angular.module('panelApp').filter('first', function () {
2012-07-02 21:09:51 +00:00
return function (input, output) {
return input.split("\n")[0];
};
});