mirror of
https://github.com/dawidd6/action-ansible-playbook.git
synced 2026-04-28 09:12:08 -06:00
6c0a4f8651
Co-authored-by: dawidd6 <9713907+dawidd6@users.noreply.github.com>
9 lines
260 B
JavaScript
9 lines
260 B
JavaScript
'use strict'
|
|
|
|
const { readFileSync, writeFileSync } = require('node:fs')
|
|
const { transcode } = require('node:buffer')
|
|
|
|
const buffer = transcode(readFileSync('./undici-fetch.js'), 'utf8', 'latin1')
|
|
|
|
writeFileSync('./undici-fetch.js', buffer.toString('latin1'))
|