mirror of
https://github.com/github/codeql-action.git
synced 2026-04-13 10:05:50 +00:00
6 lines
137 B
JavaScript
6 lines
137 B
JavaScript
'use strict';
|
|
|
|
module.exports = function isStringOrUndefined(item) {
|
|
return typeof item === 'string' || typeof item === 'undefined';
|
|
};
|