# File lib/json/add/time.rb, line 22
  def as_json(*)
    {
      JSON.create_id => self.class.name,
      's'            => tv_sec,
      'n'            => respond_to?(:tv_nsec) ? tv_nsec : tv_usec * 1000
    }
  end