JSFiddle - React, Tailwind, and code Playground

by kentaromiura

JavaScript

Object.empty = function (){
    return Object.create ? Object.create(null) : ('__proto__' in {}) ? { '__proto__' : null} : {}
}

console.dir(Object.empty())