mirror of
https://github.com/fooflington/selfdefined.git
synced 2025-06-13 05:55:26 +00:00
update
This commit is contained in:
7
node_modules/@11ty/eleventy/test/stubs/function-async.11ty.js
generated
vendored
Normal file
7
node_modules/@11ty/eleventy/test/stubs/function-async.11ty.js
generated
vendored
Normal file
@ -0,0 +1,7 @@
|
||||
module.exports = async function(data) {
|
||||
return new Promise((resolve, reject) => {
|
||||
setTimeout(function() {
|
||||
resolve(`<p>${data.name}</p>`);
|
||||
}, 100);
|
||||
});
|
||||
};
|
Reference in New Issue
Block a user