mirror of
https://github.com/marko-js/marko.git
synced 2025-12-08 19:26:05 +00:00
15 lines
637 B
JavaScript
15 lines
637 B
JavaScript
const { promiseProvider } = require("../../../__util__/async-helpers");
|
|
|
|
exports.templateData = {
|
|
getD1: () => promiseProvider(Math.ceil(Math.random() * 10)),
|
|
getD2: () => promiseProvider(Math.ceil(Math.random() * 10)),
|
|
getD3: () => promiseProvider(Math.ceil(Math.random() * 10)),
|
|
getD4: () => promiseProvider(Math.ceil(Math.random() * 10)),
|
|
getD5: () => promiseProvider(Math.ceil(Math.random() * 10)),
|
|
getD6: () => promiseProvider(Math.ceil(Math.random() * 10)),
|
|
getD7: () => promiseProvider(Math.ceil(Math.random() * 10)),
|
|
getD8: () => promiseProvider(Math.ceil(Math.random() * 10)),
|
|
};
|
|
|
|
exports.noFlushComment = true;
|