UNPKG

@yookue/ts-lang-utils

Version:

Common lang utilities for typescript

90 lines (89 loc) 4.37 kB
export { abbreviate } from './abbreviate'; export { allBlank } from './allBlank'; export { allEmpty } from './allEmpty'; export { allNotBlank } from './allNotBlank'; export { allNotEmpty } from './allNotEmpty'; export { anyBlank } from './anyBlank'; export { anyEmpty } from './anyEmpty'; export { anyNotBlank } from './anyNotBlank'; export { anyNotEmpty } from './anyNotEmpty'; export { appendIfMissing } from './appendIfMissing'; export { appendIfMissingIgnoreCase } from './appendIfMissingIgnoreCase'; export { capitalizeFirst } from './capitalizeFirst'; export { capitalizeFirstLowerTail } from './capitalizeFirstLowerTail'; export { center } from './center'; export { defaultIfBlank } from './defaultIfBlank'; export { defaultIfEmpty } from './defaultIfEmpty'; export { defaultString } from './defaultString'; export { endsWith } from './endsWith'; export { endsWithAny } from './endsWithAny'; export { endsWithAnyIgnoreCase } from './endsWithAnyIgnoreCase'; export { endsWithIgnoreCase } from './endsWithIgnoreCase'; export { equals } from './equals'; export { equalsAny } from './equalsAny'; export { equalsAnyIgnoreCase } from './equalsAnyIgnoreCase'; export { equalsIgnoreCase } from './equalsIgnoreCase'; export { escapeHtml } from './escapeHtml'; export { filterIgnoreBlank } from './filterIgnoreBlank'; export { filterIgnoreEmpty } from './filterIgnoreEmpty'; export { formatBrace } from './formatBrace'; export { formatPercent } from './formatPercent'; export { formatPlaceholder } from './formatPlaceholder'; export { fromChars } from './fromChars'; export { getLength } from './getLength'; export { includes } from './includes'; export { includesAny } from './includesAny'; export { includesAnyIgnoreCase } from './includesAnyIgnoreCase'; export { includesIgnoreCase } from './includesIgnoreCase'; export { isBlank } from './isBlank'; export { isEmpty } from './isEmpty'; export { isNotBlank } from './isNotBlank'; export { isNotEmpty } from './isNotEmpty'; export { join } from './join'; export { joinWith } from './joinWith'; export { left } from './left'; export { leftPad } from './leftPad'; export { prependIfMissing } from './prependIfMissing'; export { prependIfMissingIgnoreCase } from './prependIfMissingIgnoreCase'; export { quoteDouble } from './quoteDouble'; export { quoteSingle } from './quoteSingle'; export { removeAll } from './removeAll'; export { removeAllIgnoreCase } from './removeAllIgnoreCase'; export { removeBlank } from './removeBlank'; export { removeEnd } from './removeEnd'; export { removeEndIgnoreCase } from './removeEndIgnoreCase'; export { removeEquals } from './removeEquals'; export { removeEqualsIgnoreCase } from './removeEqualsIgnoreCase'; export { removeFirst } from './removeFirst'; export { removeFirstIgnoreCase } from './removeFirstIgnoreCase'; export { removeIncludes } from './removeIncludes'; export { removeIncludesIgnoreCase } from './removeIncludesIgnoreCase'; export { removeStart } from './removeStart'; export { removeStartIgnoreCase } from './removeStartIgnoreCase'; export { repeat } from './repeat'; export { replaceAll } from './replaceAll'; export { replaceAllIgnoreCase } from './replaceAllIgnoreCase'; export { replaceFirst } from './replaceFirst'; export { replaceFirstIgnoreCase } from './replaceFirstIgnoreCase'; export { reverse } from './reverse'; export { right } from './right'; export { rightPad } from './rightPad'; export { split } from './split'; export { startsWith } from './startsWith'; export { startsWithAny } from './startsWithAny'; export { startsWithAnyIgnoreCase } from './startsWithAnyIgnoreCase'; export { startsWithIgnoreCase } from './startsWithIgnoreCase'; export { substringAfter } from './substringAfter'; export { substringAfterAny } from './substringAfterAny'; export { substringAfterLast } from './substringAfterLast'; export { substringAfterLastAny } from './substringAfterLastAny'; export { substringBefore } from './substringBefore'; export { substringBeforeAny } from './substringBeforeAny'; export { substringBeforeLast } from './substringBeforeLast'; export { substringBeforeLastAny } from './substringBeforeLastAny'; export { toCamelCase } from './toCamelCase'; export { toChars } from './toChars'; export { toKebabCase } from './toKebabCase'; export { trim } from './trim'; export { unescapeHtml } from './unescapeHtml'; export { unquote } from './unquote';