-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.ts
More file actions
30 lines (30 loc) · 922 Bytes
/
Copy pathindex.ts
File metadata and controls
30 lines (30 loc) · 922 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
export * from '@js-utils-kit/types';
export * from './endsWithPunctuation';
export * from './hasWhitespace';
export * from './isAlphabetic';
export * from './isArray';
export * from './isBrowser';
export * from './isCamelCase';
export * from './isDefined';
export * from './isDev';
export * from './isEmail';
export * from './isEmpty';
export * from './isEmptyObject';
export * from './isFalsy';
export * from './isKebabCase';
export * from './isLowerCase';
export * from './isNode';
export * from './isNonEmptyObject';
export * from './isNonEmptyString';
export * from './isNumericString';
export * from './isObject';
export * from './isPascalCase';
export * from './isProd';
export * from './isSnakeCase';
export * from './isString';
export * from './isTest';
export * from './isTruthy';
export * from './isUndefinedOrNull';
export * from './isUpperCase';
export * from './isURL';
export * from './startsWithUppercase';