]> iEval git - plack-app-gruntmaster.git/blame_incremental - js/05-makedom.js
Add Rust, Julia, Brainfuck, PHP, OCaml and D
[plack-app-gruntmaster.git] / js / 05-makedom.js
... / ...
CommitLineData
1function m(html) {
2 const div = document.createElement("div");
3 div.innerHTML = html;
4 return div.firstChild;
5}
6
7function q(selector) {
8 return document.querySelector(selector);
9}
This page took 0.018195 seconds and 4 git commands to generate.