mirror of
https://github.com/Sevichecc/Urara-Blog.git
synced 2025-05-05 02:39:30 +08:00
5 lines
137 B
Text
5 lines
137 B
Text
'use strict';
|
|
module.exports = function (x) {
|
|
var type = typeof x;
|
|
return x !== null && (type === 'object' || type === 'function');
|
|
};
|