JSFiddle - React, Tailwind, and code Playground

by imcrthy

JavaScript

function MyThing() {
    
    this.prototype = MyThing.prototype;
    
    return this;
    
}

Object.defineProperties( MyThing.prototype, {
    'poop': {
        'value': function() {},
        'enumerable': false,
        'writable': true
    }
});

Object.defineProperties( module.exports = MyThing, {
    
});