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    
view-container / src / utils / isStyledComponent.tsx
Size: Mime:
// @flow
import { Target } from '../types'

export default function isStyledComponent(target: Target) /* : %checks */ {
  return (
    // $FlowFixMe TODO: flow for styledComponentId
    typeof target === 'function' && typeof target.styledComponentId === 'string'
  )
}