mirror of
https://github.com/openclaw/openclaw.git
synced 2026-05-08 08:50:43 +00:00
16 lines
492 B
TypeScript
16 lines
492 B
TypeScript
// Narrow primitive coercion helpers for plugins that do not need the full text-runtime barrel.
|
|
|
|
export {
|
|
hasNonEmptyString,
|
|
localeLowercasePreservingWhitespace,
|
|
lowercasePreservingWhitespace,
|
|
normalizeLowercaseStringOrEmpty,
|
|
normalizeNullableString,
|
|
normalizeOptionalLowercaseString,
|
|
normalizeOptionalString,
|
|
normalizeOptionalStringifiedId,
|
|
normalizeStringifiedOptionalString,
|
|
readStringValue,
|
|
} from "../shared/string-coerce.js";
|
|
export { isRecord } from "../utils.js";
|