frontend/.pnpm-store/v3/files/4c/a03573891562f137d34e07a1d68f67093417eb391c33b9814195ae7d85a0d33287ea41500a0f4e687f71155783b6f2f8d420783c8bc866e3fd56d0cd3d3d8d

12 lines
309 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;