mirror of
https://github.com/fooflington/selfdefined.git
synced 2025-04-23 01:29:08 +00:00
10 lines
185 B
JavaScript
10 lines
185 B
JavaScript
module.exports = async function() {
|
|
return new Promise(resolve => {
|
|
setTimeout(function() {
|
|
resolve({
|
|
localdatakeyfromjs: "howdydoody"
|
|
});
|
|
}, 1);
|
|
});
|
|
};
|