1
0
Fork 0
mirror of synced 2024-06-23 08:30:31 +12:00
budibase/packages/worker/src/utilities/fileSystem.js
2021-05-04 11:32:22 +01:00

6 lines
114 B
JavaScript

const { readFileSync } = require("fs")
exports.readStaticFile = path => {
return readFileSync(path, "utf-8")
}