Skip to content
This repository was archived by the owner on Jan 30, 2025. It is now read-only.

Commit b4fc2cf

Browse files
committed
feat(helper.ts): Added exception arry
1 parent 05892d1 commit b4fc2cf

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

src/_internal/utils/helper.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@ export const isWindowDefined = typeof window !== 'undefined';
66
export const isDocumentDefined = typeof document !== 'undefined';
77
export const isInDevelopment = process.env.NODE_ENV === 'development';
88

9+
export const exception = ['line-height', 'font-weight', 'opacity', 'scale', 'z-index'];
10+
911
export const isClassesObjectType = (object: object): object is ClassesObjectType => {
1012
return typeof object === 'object' && !Array.isArray(object);
1113
};

0 commit comments

Comments
 (0)