revert export

This commit is contained in:
Isaac Shoebottom 2023-03-09 16:27:23 -04:00
parent 6001ae4580
commit 110a50b27d

View File

@ -1,5 +1,5 @@
$count = Get-ChildItem -Path ./* -Include *.mp4 | Measure-Object | Select-Object -ExpandProperty Count
$declaration = "export const MAX = "
$declaration = "const MAX = "
$string = $declaration + $count
$string | Out-File -Encoding utf8 -FilePath ".\max.js"