mirror of
https://github.com/serverless/serverless.git
synced 2025-12-08 19:46:03 +00:00
10 lines
205 B
JavaScript
10 lines
205 B
JavaScript
import fse from 'fs-extra'
|
|
import parse from './parse.js'
|
|
|
|
function readFileSync(filePath) {
|
|
const contents = fse.readFileSync(filePath)
|
|
return parse(filePath, contents)
|
|
}
|
|
|
|
export default readFileSync
|