typescript(translucid): first commit
Signed-off-by: prescientmoon <git@moonythm.dev>
This commit is contained in:
parent
507091e37f
commit
62b1390b18
8 changed files with 498 additions and 0 deletions
typescript/translucid
13
typescript/translucid/read.js
Normal file
13
typescript/translucid/read.js
Normal file
|
@ -0,0 +1,13 @@
|
|||
"use strict";
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
const fs = require('fs');
|
||||
function read(url) {
|
||||
return new Promise((resolve, reject) => {
|
||||
fs.readFile(`./${url}`, "utf8", (err, data) => {
|
||||
if (err)
|
||||
reject(err);
|
||||
resolve(data);
|
||||
});
|
||||
});
|
||||
}
|
||||
exports.read = read;
|
Loading…
Add table
Add a link
Reference in a new issue