This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Math.random().toString(36).replace('0.','') |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* | |
| * object.watch polyfill | |
| * | |
| * 2012-04-03 | |
| * | |
| * By Eli Grey, http://eligrey.com | |
| * Public Domain. | |
| * NO WARRANTY EXPRESSED OR IMPLIED. USE AT YOUR OWN RISK. | |
| */ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # texlive.profile written on Sun Nov 30 13:02:13 2014 UTC | |
| # It will NOT be updated and reflects only the | |
| # installation profile at installation time. | |
| selected_scheme scheme-custom | |
| TEXDIR /home/travis/build/helloIAmPau/curriculum-vitae/tl | |
| TEXMFCONFIG ~/.texlive2014/texmf-config | |
| TEXMFHOME ~/texmf | |
| TEXMFLOCAL /home/travis/build/helloIAmPau/curriculum-vitae/texmf-local | |
| TEXMFSYSCONFIG /home/travis/build/helloIAmPau/curriculum-vitae/texmf-config | |
| TEXMFSYSVAR /home/travis/build/helloIAmPau/curriculum-vitae/texmf-var |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| var htmlparser = require("htmlparser2"); | |
| let spaces = 0; | |
| const nodes = { | |
| 'dom-loop': function(name, attribs) { | |
| return `for(const current of ${ attribs.items.trim().slice(2, -1).trim() }) {`; | |
| }, | |
| 'dom-if': function(name, attribs) { | |
| return `if(${ attribs.test.trim().slice(2, -1).trim() }) {`; | |
| }, |
OlderNewer