astro-ghostcms/.pnpm-store/v3/files/50/79b7dcad248c25bc6ddbe281d80...

6 lines
151 B
Plaintext

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