Skip to content

Instantly share code, notes, and snippets.

View thomaspatrickwelborn's full-sized avatar

Interstellar Manatee thomaspatrickwelborn

View GitHub Profile
const Accessors = {
object: ($target, $property) => {
if($property === undefined) { return $target }
else { return $target[$property] }
},
map: ($target, $property) => {
if($property === undefined) { return $target }
else { return $target.get($property) }
},
}