Skip to content

Instantly share code, notes, and snippets.

View jrmoynihan's full-sized avatar
🎯
Focusing

James Moynihan jrmoynihan

🎯
Focusing
View GitHub Profile
@jrmoynihan
jrmoynihan / App.svelte
Last active October 2, 2023 20:22
A helper function for setting Svelte 5 $state() runes on objects
<script>
import { gettable, settable, runed } from './runes.js'
const createFruit = (obj) => {
// An optional object of default values if the provided prop is nullish (try commenting each out)
const defaults = {
color: 'purple',
consumed: true,
count: 0
}