catlogjs
Version:
Static site generator, translate human readable text format(such as markdown) into html, with a lot of other functions
28 lines (17 loc) • 332 B
JavaScript
(function() {
var HelloWorld;
HelloWorld = (function() {
function HelloWorld() {}
HelloWorld.test = 'test';
return HelloWorld;
})();
}).call(this);
(function() {
console.log('hi');
}).call(this);
(function() {
var sayHello;
sayHello = function() {
return console.log('hi');
};
}).call(this);