2018-08-01 00:56:36 +02:00

12 lines
191 B
Ruby

require_relative "uncompressed"
module UnpackStrategy
class Otf < Uncompressed
using Magic
def self.can_extract?(path)
path.magic_number.match?(/\AOTTO/n)
end
end
end