Utils.pm 215 B

123456789101112131415
  1. package Trog::Utils;
  2. use strict;
  3. use warnings;
  4. no warnings 'experimental';
  5. use feature qw{signatures};
  6. sub strip_and_trunc ($s) {
  7. return unless $s;
  8. $s =~ s/<[^>]*>//g;
  9. return substr $s, 0, 280;
  10. }
  11. 1;