Files
metasploit-gs/lib/rkelly/js/string.rb
T
James Lee 7458abc8b3 add rkelly, a javascript parsing library. this version fixes several bugs in the abandoned gem, see https://github.com/tenderlove/rkelly/pull/6
git-svn-id: file:///home/svn/framework3/trunk@12815 4d416f70-5f16-0410-b530-b9f4589650da
2011-06-02 06:31:34 +00:00

22 lines
464 B
Ruby

module RKelly
module JS
class String < Base
class << self
def create(*args)
self.new(args.first || '')
end
end
def initialize(value)
super()
self['valueOf'] = value
self['valueOf'].function = lambda { value }
self['toString'] = value
self['fromCharCode'] = unbound_method(:fromCharCode) { |*args|
args.map { |x| x.chr }.join
}
end
end
end
end