18 lines
198 B
TypeScript
18 lines
198 B
TypeScript
|
|
namespace formgen.helpers.file
|
||
|
|
{
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @todo handle errors
|
||
|
|
*/
|
||
|
|
export function read_text(
|
||
|
|
path : string
|
||
|
|
) : Promise<string>
|
||
|
|
{
|
||
|
|
return (
|
||
|
|
fetch(path)
|
||
|
|
.then(x => x.text())
|
||
|
|
);
|
||
|
|
}
|
||
|
|
|
||
|
|
}
|