metasploit-framework/lib/rkelly/js/math.rb

11 lines
143 B
Ruby

module RKelly
module JS
class Math < Base
def initialize
super
self['PI'] = ::Math::PI
end
end
end
end