選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。
 
 
 
 

7 行
305 B

  1. import isPlainObject from './isPlainObject';
  2. import warning from './warning';
  3. export default function verifyPlainObject(value, displayName, methodName) {
  4. if (!isPlainObject(value)) {
  5. warning(methodName + "() in " + displayName + " must return a plain object. Instead received " + value + ".");
  6. }
  7. }