Class: File::Stat
Instance Method Summary collapse
- #file? ⇒ Boolean
-
#initialize(path) ⇒ Stat
constructor
A new instance of Stat.
- #mtime ⇒ Object
Constructor Details
#initialize(path) ⇒ Stat
Returns a new instance of Stat
142 143 144 |
# File 'opal/stdlib/nodejs/file.rb', line 142 def initialize(path) @path = path end |
Instance Method Details
#file? ⇒ Boolean
146 147 148 |
# File 'opal/stdlib/nodejs/file.rb', line 146 def file? `__fs__.statSync(#{@path}).isFile()` end |
#mtime ⇒ Object
[View source]
150 151 152 |
# File 'opal/stdlib/nodejs/file.rb', line 150 def mtime `__fs__.statSync(#{@path}).mtime` end |