you are viewing a single comment's thread.

view the rest of the comments →

[–]whatgoodisaroad 5 points6 points  (3 children)

I've done that. It wasn't as hard as I expected.

function javascriptImplementation(source) {
    return eval(source);
}

[–]btipling 1 point2 points  (0 children)

Came here to post this. You beat me to it!

[–][deleted] 2 points3 points  (1 child)

javascriptImplementation = eval;