DEV Community

Discussion on: I'm the maintainer of Babel, ask me anything!

Collapse
 
andy profile image
Andy Zhao (he/him)

Thanks for the answer! I recently wrote about my first attempt at putting some fun in code in the dev.to codebase:

  def pound_it
    text_color_hex&.prepend("#") unless text_color_hex&.starts_with?("#")
    bg_color_hex&.prepend("#") unless bg_color_hex&.starts_with?("#")
  end