_isPlaceholder.js 132 B

123
  1. export default function _isPlaceholder(a) {
  2. return a != null && typeof a === 'object' && a['@@functional/placeholder'] === true;
  3. }