2018-07-24 16:44:27 +02:00

10 lines
185 B
Ruby

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