mirror of
https://codeberg.org/yeentown/barkey.git
synced 2025-06-25 14:26:57 +00:00
8 lines
148 B
TypeScript
8 lines
148 B
TypeScript
export default function(opts) {
|
|
return new Promise<string>((res, rej) => {
|
|
const x = window.prompt(opts.title);
|
|
if (x) {
|
|
res(x);
|
|
}
|
|
});
|
|
}
|