mirror of
https://github.com/rjNemo/federation
synced 2026-06-10 03:56:39 +00:00
5 lines
151 B
JavaScript
5 lines
151 B
JavaScript
'use strict';
|
|
|
|
module.exports = function isPrimitive(value) {
|
|
return value === null || (typeof value !== 'function' && typeof value !== 'object');
|
|
};
|