aboutsummaryrefslogtreecommitdiffhomepage
path: root/packages/node-utils/src/file.ts
blob: 89cf5fe0fcd788f963ccfb9047ec44c4d92027a8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
import { stat } from 'fs/promises'

async function getFileSize (path: string) {
  const stats = await stat(path)

  return stats.size
}

export {
  getFileSize
}