Dashboard sipadu mbip
Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

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. };