Current section
Files
Jump to
Current section
Files
src/attribute.ffi.mjs
export function toProps(attributes) {
const props = {}
for (const item of attributes) {
props[item.key] = item.content
}
return props
}
export function coerce(a) {
return a
}