Guest User

Untitled

a guest
May 24th, 2018
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. var styles = heredoc(function() {
  2. /*
  3. <style>
  4. .my_css {
  5. ...
  6. }
  7. </style>
  8. */
  9. });
  10.  
  11. $("head").append(styles);
  12.  
  13. function heredoc(fun) {
  14. return (fun + '').replace('function () {', '').replace(/\}$/, '').replace('/*', '').replace('*/', '');
  15. };
Add Comment
Please, Sign In to add comment