Class: Browser::File
Instance Attribute Summary collapse
-
#last_modified ⇒ Time
readonly
Last modified date of this file.
-
#name ⇒ String
readonly
Filename.
Attributes inherited from Blob
Class Method Summary collapse
-
.create(from, name, options = {}) ⇒ Object
Create a new file from anything that File API supports.
Methods inherited from Blob
#buffer, #rename, #slice, #text, #to_url
Methods included from NativeCachedWrapper
#restricted?, #set_native_reference
Instance Attribute Details
permalink #last_modified ⇒ Time (readonly)
Returns last modified date of this file.
84 85 86 |
# File 'opal/browser/blob.rb', line 84 def last_modified Time.at(`#@native.lastModified`/1000.0) end |
Class Method Details
permalink .create(from, name, options = {}) ⇒ Object
Create a new file from anything that File API supports
78 79 80 |
# File 'opal/browser/blob.rb', line 78 def self.create(from, name, ={}) new(`new File(#{Native.convert(from)}, #{name}, #{.to_n})`) end |