htmlToPlaintext.js 116 B

1
  1. "use strict";app.filter("htmlToPlaintext",function(){return function(t){return String(t).replace(/<[^>]+>/gm,"")}});