mirror of
https://github.com/imranismail/setup-kustomize.git
synced 2026-05-20 13:42:19 +00:00
4 lines
136 B
JavaScript
4 lines
136 B
JavaScript
module.exports = function isPrimitive(value) {
|
|
return value === null || (typeof value !== 'function' && typeof value !== 'object');
|
|
};
|