Skip to content

Instantly share code, notes, and snippets.

View Fuzzyma's full-sized avatar

Ulrich-Matthias Schäfer Fuzzyma

  • Germany
View GitHub Profile
@loilo
loilo / magic-methods.js
Last active June 15, 2024 07:36
PHP Magic Methods in JavaScript
function magicMethods (clazz) {
// A toggle switch for the __isset method
// Needed to control "prop in instance" inside of getters
let issetEnabled = true
const classHandler = Object.create(null)
// Trap for class instantiation
classHandler.construct = (target, args, receiver) => {
// Wrapped class instance