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.

isPrimitive.js 151B

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