JSFiddle - React, Tailwind, and code Playground

by kassiomaia

JavaScript

const API = {}


const proxy = new Proxy(API, {
	set(target, key, value) {
  	console.log(target, key, value)
    target[key] = value
  }
})


proxy.test = 10

console.log(API.test)