module FFaker::Time

def between(from, to)

def between(from, to)
  ::Time.at(from + rand * (to.to_f - from.to_f))
end