diff --git a/src/renderers/shared/fiber/isomorphic/ReactPortal.js b/src/renderers/shared/fiber/isomorphic/ReactPortal.js index fac6fbf148..478b964159 100644 --- a/src/renderers/shared/fiber/isomorphic/ReactPortal.js +++ b/src/renderers/shared/fiber/isomorphic/ReactPortal.js @@ -35,15 +35,4 @@ exports.createPortal = function( }; }; -/** - * Verifies the object is a portal object. - */ -exports.isPortal = function(object: mixed): boolean { - return ( - typeof object === 'object' && - object !== null && - object.$$typeof === REACT_PORTAL_TYPE - ); -}; - exports.REACT_PORTAL_TYPE = REACT_PORTAL_TYPE;