style: add missed line after method decl

This commit is contained in:
Erica Marigold 2025-01-12 08:01:52 +00:00
parent 033a095f78
commit 83f847eabc
Signed by: DevComp
GPG key ID: 429EF1C337871656

View file

@ -157,6 +157,7 @@ function ZipEntry.new(offset: number, name: string, properties: ZipEntryProperti
{ __index = ZipEntry }
)
end
function ZipEntry.isSymlink(self: ZipEntry): boolean
return bit32.band(self.attributes, 0xA0000000) == 0xA0000000
end