mirror of
https://github.com/fooflington/selfdefined.git
synced 2025-12-20 02:22:51 +00:00
update
This commit is contained in:
15
node_modules/@11ty/eleventy/test/stubs/class.11ty.js
generated
vendored
Normal file
15
node_modules/@11ty/eleventy/test/stubs/class.11ty.js
generated
vendored
Normal file
@@ -0,0 +1,15 @@
|
||||
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