UNPKG

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.

22 lines 988 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports._String = void 0; const string_normalize_empty_to_undefined_js_1 = require("./impl/string-normalize-empty-to-undefined.js"); const string_normalize_null_undefined_to_empty_js_1 = require("./impl/string-normalize-null-undefined-to-empty.js"); const string_concat_2_js_1 = require("./impl/string-concat-2.js"); /** * @public * Utilities that apply to `string`. */ class _String { constructor() { } } exports._String = _String; /** {@inheritDoc stringConcat2} */ _String.concat2 = string_concat_2_js_1.stringConcat2; /** {@inheritDoc stringNormalizeEmptyToUndefined} */ _String.normalizeEmptyToUndefined = string_normalize_empty_to_undefined_js_1.stringNormalizeEmptyToUndefined; /** {@inheritDoc stringNormalizeNullUndefinedToEmpty} */ _String.normalizeNullUndefinedToEmpty = string_normalize_null_undefined_to_empty_js_1.stringNormalizeNullUndefinedToEmpty; //# sourceMappingURL=_string.js.map