mirror of
https://github.com/status-im/react-native.git
synced 2025-01-20 06:18:57 +00:00
9 lines
195 B
JavaScript
9 lines
195 B
JavaScript
|
'use strict';
|
||
|
|
||
|
const fs = require('fs');
|
||
|
|
||
|
module.exports = function savePodFile(podfilePath, podLines) {
|
||
|
const newPodfile = podLines.join('\n');
|
||
|
fs.writeFileSync(podfilePath, newPodfile);
|
||
|
};
|