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

7 行
144B

  1. 'use strict';
  2. module.exports = value => {
  3. const type = typeof value;
  4. return value !== null && (type === 'object' || type === 'function');
  5. };