mirror of
https://github.com/LalleSX/4chan-XZ.git
synced 2025-10-07 07:22:37 +02:00
6 lines
151 B
JavaScript
6 lines
151 B
JavaScript
var fs = require('fs')
|
|
|
|
var text = fs.readFileSync(process.argv[2], 'utf8')
|
|
text = text.replace(/\r\n/g, '\n')
|
|
fs.writeFileSync(process.argv[3], text)
|