10 lines
185 B
Ruby
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
|