persona-community-5/.pnpm-store/v3/files/de/2bfa918663f7ed32aa0cef3086586671f3f4a8438c4145a561ef25c851e3737116edbc1639ab982355adace13bf6fca7f871fb171c5b3b85a83969b10fbd93
rdev-worker a1d0d1bf1c
Some checks failed
ci/woodpecker/push/woodpecker Pipeline failed
build: /implement-feature community-ui --requirements 'Build the React commu...
2026-02-24 08:22:30 +00:00

12 lines
298 B
Plaintext

"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.isEmpty = exports.isString = void 0;
function isString(input) {
return typeof input === 'string';
}
exports.isString = isString;
function isEmpty(input) {
return input === '';
}
exports.isEmpty = isEmpty;