rc-js-util
Version:
A collection of TS and C++ utilities to help writing performant and correct applications, achieved through strict typing and (removable) invariant checking.
17 lines • 805 B
TypeScript
import { stringNormalizeEmptyToUndefined } from "./impl/string-normalize-empty-to-undefined.js";
import { stringNormalizeNullUndefinedToEmpty } from "./impl/string-normalize-null-undefined-to-empty.js";
import { stringConcat2 } from "./impl/string-concat-2.js";
/**
* @public
* Utilities that apply to `string`.
*/
export declare class _String {
/** {@inheritDoc stringConcat2} */
static readonly concat2: typeof stringConcat2;
/** {@inheritDoc stringNormalizeEmptyToUndefined} */
static readonly normalizeEmptyToUndefined: typeof stringNormalizeEmptyToUndefined;
/** {@inheritDoc stringNormalizeNullUndefinedToEmpty} */
static readonly normalizeNullUndefinedToEmpty: typeof stringNormalizeNullUndefinedToEmpty;
private constructor();
}
//# sourceMappingURL=_string.d.ts.map