feat: adding converter

This commit is contained in:
carlos
2022-06-04 14:35:49 -04:00
parent 6f5768977a
commit ebea6bc995
3 changed files with 51 additions and 0 deletions

7
index.js Normal file
View File

@@ -0,0 +1,7 @@
const { readFile } = require('./utils/converter')
const add = async (path) => {
return await readFile(`${path}`)
}
module.exports = add