mirror of
https://github.com/github/codeql-action.git
synced 2025-12-27 01:30:10 +08:00
7 lines
144 B
JavaScript
7 lines
144 B
JavaScript
'use strict';
|
|
|
|
module.exports = value => {
|
|
const type = typeof value;
|
|
return value !== null && (type === 'object' || type === 'function');
|
|
};
|