1
0
Fork 0
mirror of https://github.com/rubyjs/therubyracer synced 2023-03-27 23:21:42 -04:00
therubyracer/lib/v8/date.rb
2015-07-30 21:15:10 +03:00

7 lines
112 B
Ruby

module V8
class Date < V8::Object
def value_of
@context.to_ruby @native.ValueOf()
end
end
end