• File: isPrimitive.js
  • Full Path: /home6/laduliya/test.mydthpay.com/node_modules/npm/node_modules/es-to-primitive/helpers/isPrimitive.js
  • Date Modified: 10/26/1985 11:45 AM
  • File size: 136 bytes
  • MIME-type: text/plain
  • Charset: utf-8
module.exports = function isPrimitive(value) {
	return value === null || (typeof value !== 'function' && typeof value !== 'object');
};