UNPKG

react-truncate-markup

Version:
13 lines (10 loc) 369 B
'use strict'; exports.__esModule = true; var Atom = exports.Atom = function Atom(props) { return props.children || null; }; Atom.__rtm_atom = true; var isAtomComponent = exports.isAtomComponent = function isAtomComponent(reactEl) { return !!(reactEl && reactEl.type && reactEl.type.__rtm_atom === true); }; var ATOM_STRING_ID = exports.ATOM_STRING_ID = '<Atom>';