blob: 3a6244327862d42358e4e5bcf89f480d153c86a2 (
plain) (
blame)
1
2
3
4
5
6
7
8
|
export function stripRenderFn(entryWithRender) {
const { render, ...entry } = entryWithRender;
return entry;
}
export function stripAllRenderFn(collection = []) {
return collection.map(stripRenderFn);
}
|