mirror of
https://github.com/fooflington/selfdefined.git
synced 2025-06-13 05:55:26 +00:00
update
This commit is contained in:
17
node_modules/@11ty/eleventy/test/stubs/class-with-dep.11ty.js
generated
vendored
Normal file
17
node_modules/@11ty/eleventy/test/stubs/class-with-dep.11ty.js
generated
vendored
Normal file
@ -0,0 +1,17 @@
|
||||
const Dep = require("./class-with-dep-upstream.js");
|
||||
|
||||
class Test {
|
||||
returnsBill() {
|
||||
return "Bill";
|
||||
}
|
||||
|
||||
static returnsTed() {
|
||||
return "Ted";
|
||||
}
|
||||
|
||||
render({ name }) {
|
||||
return `<p>${name}${this.returnsBill()}${Test.returnsTed()}</p>`;
|
||||
}
|
||||
}
|
||||
|
||||
module.exports = Test;
|
Reference in New Issue
Block a user