Skip to content

Commit

Permalink
improve-url-retrieval
Browse files Browse the repository at this point in the history
  • Loading branch information
uriva committed May 1, 2024
1 parent 5ba0e9b commit 5c7738f
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 1 deletion.
12 changes: 12 additions & 0 deletions src/index.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -190,6 +190,18 @@ testUnaryFn(
]);

testUnaryFn("urlsInText", urlsInText)([
[
`
מתלבט.ת? בוא.י נדבר
להרשמה
IMG_6773.jpg
שמחה שבחרת להצטרף אלינו :)
מיד אחרי ההרשמה יפתח עבורך דף תשלום
שם מלא
טלפון
מייל`,
[],
],
[
`🌵מקומות אחרונים לריטריט בשישי הקרוב!! ריטריט יום ADAMA- חזרה לשלווה הפנימית, היטענות בכוחות ומשאבים עם שירי לבני 🌼
Expand Down
4 changes: 3 additions & 1 deletion src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -362,7 +362,9 @@ const kwInText = (x: string) =>
export const someKewyordMatches = (keywords: string[]) => (x: string) =>
keywords.some(kwInText(x));

export const urlsInText = (x: string) => [...getUrls(x)];
export const urlsInText = (
x: string,
) => [...getUrls(x.replace(/\b[^\s]+.(jpg|png|jpeg)\b/, ""))];

type Keywords = { keywords: string[]; antiKeywords?: string[] };

Expand Down

0 comments on commit 5c7738f

Please sign in to comment.