JSFiddle - React, Tailwind, and code Playground

by rudygotya

JavaScript

var jQuery = ( function () {

    var jQuery = function () {
            return new jQuery.prototype.init();
        }
        
    jQuery.prototype = {
        constructor : jQuery,
        init: function () {}
    };
    
    return jQuery;

} )();