mirror of
https://github.com/Sevichecc/Urara-Blog.git
synced 2025-05-04 12:39:29 +08:00
5 lines
151 B
Text
5 lines
151 B
Text
'use strict';
|
|
|
|
module.exports = function isPrimitive(value) {
|
|
return value === null || (typeof value !== 'function' && typeof value !== 'object');
|
|
};
|