|
|
|
@ -151,9 +151,9 @@ function create_fragment(ctx) {
|
|
|
|
|
function instance($$self, $$props, $$invalidate) {
|
|
|
|
|
let { things, foo, bar, baz } = $$props;
|
|
|
|
|
|
|
|
|
|
const writableProps = ['things', 'foo', 'bar', 'baz'];
|
|
|
|
|
const writable_props = ['things', 'foo', 'bar', 'baz'];
|
|
|
|
|
Object.keys($$props).forEach(key => {
|
|
|
|
|
if (!writableProps.includes(key)) console.warn(`<Component> was created with unknown attribute '${key}'`);
|
|
|
|
|
if (!writable_props.includes(key)) console.warn(`<Component> was created with unknown prop '${key}'`);
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
$$self.$set = $$props => {
|
|
|
|
@ -220,4 +220,4 @@ class Component extends SvelteComponentDev {
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
export default Component;
|
|
|
|
|
export default Component;
|