@dynatrace/react-native-plugin
Version:
This plugin gives you the ability to use the Dynatrace Mobile agent in your react native application.
8 lines (7 loc) • 325 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.StringUtils = void 0;
exports.StringUtils = {
isStringNullEmptyOrUndefined: (value) => !(value != null && value.length !== undefined && value.length > 0),
isStringNullOrUndefined: (value) => value == null || value === undefined,
};