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

index.js 137B

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