Repository URL to install this package:
Version:
0.6.0 ▾
|
'use strict';
module.exports = value => {
const type = typeof value;
return value !== null && (type === 'object' || type === 'function');
};