Repository URL to install this package:
|
Version:
1.2.19 ▾
|
@skava/modules
/
___dist
/
view-container
/
styles
/
styled-components
/
src
/
utils
/
isStyledComponent.js
|
|---|
// @flow
import { Target } from '../types'
export default function isStyledComponent(target: Target) /* : %checks */ {
return (
typeof target === 'function' && typeof target.styledComponentId === 'string'
)
}