Skip to content

Commit bf3d9a0

Browse files
committed
Linting fixes
1 parent d30ed4e commit bf3d9a0

File tree

1 file changed

+2
-5
lines changed

1 file changed

+2
-5
lines changed

lib/ExpensiMark.ts

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
import str from "./str";
2-
31
'worklet';
42

53
import Str from './str';
@@ -82,15 +80,14 @@ const MARKDOWN_VIDEO_REGEX = new RegExp(
8280
const SLACK_SPAN_NEW_LINE_TAG = '<span class="c-mrkdwn__br" data-stringify-type="paragraph-break" style="box-sizing: inherit; display: block; height: unset;"></span>';
8381

8482
export default class ExpensiMark {
85-
8683
getAttributeCache = (extras?: Extras) => {
8784
if (!extras) {
8885
return {attrCachingFn: undefined, attrCache: undefined};
8986
}
9087

9188
return {
9289
attrCachingFn: extras.mediaAttributeCachingFn ?? extras.cacheVideoAttributes,
93-
attrCache: extras.mediaAttributeCache ?? extras.videoAttributeCache
90+
attrCache: extras.mediaAttributeCache ?? extras.videoAttributeCache,
9491
};
9592
};
9693

@@ -732,7 +729,7 @@ export default class ExpensiMark {
732729
return `![${altText}](${imgSource})`;
733730
}
734731
return `!(${imgSource})`;
735-
}
732+
},
736733
},
737734

738735
{

0 commit comments

Comments
 (0)