class Less::Loader::Fs

Public Instance Methods

readFile(path, encoding, callback) click to toggle source
# File lib/less/loader.rb, line 52
def readFile(path, encoding, callback)
  callback.call(nil, File.read(path))
end
statSync(path) click to toggle source
# File lib/less/loader.rb, line 48
def statSync(path)
  File.stat(path)
end