Sha256: e3163e2e343d9e6743faaf2cf6261259eecd3b5ebf0acd038757bbdbc70bbedc
Contents?: true
Size: 309 Bytes
Versions: 239
Compression:
Stored size: 309 Bytes
Contents
# frozen_string_literal: true module Primer # :nodoc: module JoinStyleArgumentsHelper # Join two `style` arguments # # join_style_arguments("width: 100%", "height: 100%") => # "width: 100%;height: 100%" def join_style_arguments(*args) args.compact.join(";") end end end
Version data entries
239 entries across 239 versions & 2 rubygems