mirror of
https://github.com/Snigdha-OS/documentation.git
synced 2025-09-06 19:15:12 +02:00
7 lines
168 B
JavaScript
7 lines
168 B
JavaScript
'use strict';
|
|
var isCallable = require('../internals/is-callable');
|
|
|
|
module.exports = function (it) {
|
|
return typeof it == 'object' ? it !== null : isCallable(it);
|
|
};
|