string similarity coloring:将给定的一组N个字符串着色为一组M个 源码
字符串相似性着色 该软件包包括一组启发式方法,用于将N个字符串集映射到M <N个颜色集。 有两个受支持的主题,您可以通过主导出功能的theme选项指定它们: { theme : 'colorbrewer' | 'patternfly' } `` ` ## Getting Started ` `` npm install string - similarity - coloring `` ` ` `` typescript import ssc from 'string-similarity-coloring' // returns an array of color-class assignments, // parallel to the input array of strings ssc ( [ 'apache-coyote' , 'apache' , 'nginx 1' , 'n
用户评论