ez-common-ts/src/index.ts
2023-11-14 15:52:35 +08:00

30 lines
513 B
TypeScript

import {
withRecord,
assignRecords,
RecordClearMode,
} from "./commons/record-util";
import {
stringTokenizer,
equalsIgnoreCase,
includeIgnoreCase,
} from "./commons/str-utils";
import {
getFileExt,
getFileFullName,
getFileNameWithoutExt,
getFileInfo,
} from "./commons/file-util";
export {
stringTokenizer,
withRecord,
equalsIgnoreCase,
includeIgnoreCase,
assignRecords,
RecordClearMode,
getFileExt,
getFileFullName as getFileName,
getFileNameWithoutExt,
getFileInfo,
};