mirror of
https://github.com/ArthurDanjou/ui.git
synced 2026-01-14 20:19:34 +01:00
18 lines
445 B
JavaScript
18 lines
445 B
JavaScript
import { promises as fsp } from 'node:fs'
|
|
|
|
export async function sortFile(path) {
|
|
const file = await fsp.readFile(path, 'utf-8')
|
|
|
|
const lines = file.trim().split('\n').sort()
|
|
|
|
await fsp.writeFile(path, lines.join('\n') + '\n')
|
|
}
|
|
|
|
export async function appendFile(path, contents) {
|
|
const file = await fsp.readFile(path, 'utf-8')
|
|
|
|
if (!file.includes(contents)) {
|
|
await fsp.writeFile(path, file.trim() + '\n' + contents + '\n')
|
|
}
|
|
}
|