Current section
Files
Jump to
Current section
Files
src/sketch/redraw/internals/mutable.ffi.mjs
export function from(current) {
return { current }
}
export function set(variable, newValue) {
variable.current = newValue
return variable
}
export function get(variable) {
return variable.current
}