Comparing version 0.0.7 to 0.0.8
@@ -0,1 +1,5 @@ | ||
'use strict'; | ||
Object.defineProperty(exports, '__esModule', { value: true }); | ||
/** | ||
@@ -193,3 +197,4 @@ * Cede control to the event loop for one tick, from within an async function. | ||
export { clusterByKey, clusterByKnn }; | ||
exports.clusterByKey = clusterByKey; | ||
exports.clusterByKnn = clusterByKnn; | ||
//# sourceMappingURL=index.js.map |
@@ -0,1 +1,3 @@ | ||
'use strict'; | ||
function stripLatin1Accent(c) { | ||
@@ -260,3 +262,3 @@ switch (c) { | ||
export default fingerprint; | ||
module.exports = fingerprint; | ||
//# sourceMappingURL=fingerprint.js.map |
@@ -0,1 +1,3 @@ | ||
'use strict'; | ||
var jsLevenshtein = (function() | ||
@@ -108,3 +110,3 @@ { | ||
export default ret; | ||
module.exports = ret; | ||
//# sourceMappingURL=levenshtein.js.map |
{ | ||
"name": "clustring", | ||
"version": "0.0.7", | ||
"version": "0.0.8", | ||
"description": "Algorithms for clustering strings", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
@@ -20,3 +20,3 @@ import babel from 'rollup-plugin-babel' | ||
name: 'clustring', | ||
format: 'es', | ||
format: 'cjs', | ||
sourcemap: true, | ||
@@ -34,3 +34,3 @@ file: 'index.js' | ||
name: `${fn}.js`, | ||
format: 'es', | ||
format: 'cjs', | ||
sourcemap: true, | ||
@@ -37,0 +37,0 @@ file: `${fn}.js` |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
94041
1141