mirror of
https://github.com/github/codeql-action.git
synced 2025-12-28 18:20:08 +08:00
11 lines
263 B
JavaScript
11 lines
263 B
JavaScript
"use strict";
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
function isString(input) {
|
|
return typeof input === 'string';
|
|
}
|
|
exports.isString = isString;
|
|
function isEmpty(input) {
|
|
return input === '';
|
|
}
|
|
exports.isEmpty = isEmpty;
|