forked from lix-project/lix-website
14 lines
336 B
JavaScript
14 lines
336 B
JavaScript
'use strict';
|
|
|
|
const path = require('path');
|
|
const stripAnsi = require('strip-ansi');
|
|
const writeFileAtomic = require('write-file-atomic');
|
|
|
|
/**
|
|
* @param {string} content
|
|
* @param {string} filePath
|
|
* @returns {Promise<void>}
|
|
*/
|
|
module.exports = (content, filePath) =>
|
|
writeFileAtomic(path.normalize(filePath), stripAnsi(content));
|