Advertisement
Guest User

Untitled

a guest
Nov 21st, 2017
104
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. parseTitle(section) {
  2. // section can be artist name or song name
  3. let titleParam="";
  4.  
  5. titleParam=this.getParam("Title");
  6.  
  7. if (titleParam===null) {
  8. return null;
  9. } else {
  10. // Remove these strings from the URL
  11. titleParam=titleParam.toString().replace(' - [HQ] - YouTube','');
  12. }
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement