UNPKG

sugar

Version:

A Javascript utility library for working with native objects.

8 lines (6 loc) 196 B
'use strict'; function isPrimitive(obj, type) { type = type || typeof obj; return obj == null || type === 'string' || type === 'number' || type === 'boolean'; } module.exports = isPrimitive;