mirror of
https://github.com/Chocobozzz/PeerTube.git
synced 2025-10-04 10:19:35 +02:00
11 lines
159 B
TypeScript
11 lines
159 B
TypeScript
import { stat } from 'fs-extra'
|
|
|
|
async function getFileSize (path: string) {
|
|
const stats = await stat(path)
|
|
|
|
return stats.size
|
|
}
|
|
|
|
export {
|
|
getFileSize
|
|
}
|