mirror of
https://github.com/github/codeql-action.git
synced 2026-04-05 11:12:16 +00: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');
|
|
};
|