Repository URL to install this package:
|
Version:
1.2.11 ▾
|
@skava/modules
/
___dist
/
view-container
/
styles
/
styled-components
/
src
/
utils
/
isStyledComponent.js
|
|---|
"use strict";
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.default = isStyledComponent;
function isStyledComponent(target)
/* : %checks */
{
return typeof target === 'function' && typeof target.styledComponentId === 'string';
}