module Eco::Data::FuzzyMatch::ClassMethods

def jaro_winkler(str1, str2, **options)

def jaro_winkler(str1, str2, **options)
  return 0 if !str1 || !str2
  options = {
    ignore_case: true,
    weight:      0.25
  }.merge(options)
  require 'jaro_winkler'
  JaroWinkler.distance(str1, str2, **options)
end