|
|
|
@ -179,7 +179,7 @@ function instance($$self, $$props, $$invalidate) {
|
|
|
|
const writable_props = ["things", "foo", "bar", "baz"];
|
|
|
|
const writable_props = ["things", "foo", "bar", "baz"];
|
|
|
|
|
|
|
|
|
|
|
|
Object.keys($$props).forEach(key => {
|
|
|
|
Object.keys($$props).forEach(key => {
|
|
|
|
if (!~writable_props.indexOf(key) && key.slice(0, 2) !== "$$") console.warn(`<Component> was created with unknown prop '${key}'`);
|
|
|
|
if (!~writable_props.indexOf(key) && key.slice(0, 2) !== "$$" && key !== "slot") console.warn(`<Component> was created with unknown prop '${key}'`);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
$$self.$$set = $$props => {
|
|
|
|
$$self.$$set = $$props => {
|
|
|
|
|