Advertisement
Guest User

Untitled

a guest
Aug 22nd, 2019
95
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. function() {
  2.  
  3. var output;
  4. var input = {{Click Text}};
  5.  
  6. if (input == null || input == ‘’) {
  7. output = ‘undefined’;
  8. } else {
  9. if (input.length > 100) {
  10. output = input.substring(0,100).toLowerCase() + ‘…’;
  11. } else {
  12. output = input.toLowerCase();
  13. }
  14. }
  15.  
  16. return output;
  17. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement