match_percentage
Advanced tools
Comparing version 1.0.3 to 1.0.4
declare function matchPercentage(sentence1: string, sentence2: string): { matchPercentage: number, match: boolean }; | ||
declare function matchPercentage(sentence1: string, sentence2: string, truthLevel: number): { matchPercentage: number, match: boolean }; | ||
export default matchPercentage; |
{ | ||
"name": "match_percentage", | ||
"version": "1.0.3", | ||
"version": "1.0.4", | ||
"description": "I originally wrote this to compare title headlines from local news websites I web scrape. On any given day, all the websites can have the same story with the title being very similar, which helps me check for duplicate articles.", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
5098