Are you looking for something? Here is all of the GitHub Docs history in one single commit. Enjoy! 🎉
11 lines
269 B
JavaScript
11 lines
269 B
JavaScript
const fs = require('fs')
|
|
const path = require('path')
|
|
const yaml = require('js-yaml')
|
|
|
|
const read = function () {
|
|
const filename = path.join(__dirname, '../crowdin.yml')
|
|
return yaml.load(fs.readFileSync(filename, 'utf8'), { filename })
|
|
}
|
|
|
|
module.exports = { read }
|