Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
Size: Mime:
import { ToggleMoleculeProps } from './typings'

export function toQa(props: ToggleMoleculeProps) {
  const { filterLabel } = props

  const lowerCasedFilterLabel =
    filterLabel &&
    filterLabel
      .toString()
      .toLowerCase()
      .replace(/\s/g, '')

  const dataQa = props.dataQa + lowerCasedFilterLabel

  return dataQa
}