9 lines
194 B
JavaScript
9 lines
194 B
JavaScript
|
'use strict';
|
||
|
|
||
|
const fs = require('fs');
|
||
|
|
||
|
module.exports = function readPodfile(podfilePath) {
|
||
|
const podContent = fs.readFileSync(podfilePath, 'utf8');
|
||
|
return podContent.split(/\r?\n/g);
|
||
|
};
|