This commit is contained in:
2026-01-16 20:56:57 -06:00
parent 8c0c768b01
commit 0490fab72f

View File

@@ -31,9 +31,9 @@ var input_file = args[0]
var output_file = args[1]
function ext_lower(path) {
var e = path.split('.').pop()
var e = array(path, '.').pop()
if (!e) return null
return e.toLowerCase()
return lower(e)
}
function decode_image(blob, ext) {