@thi.ng/compare
Advanced tools
Comparing version 2.0.0 to 2.0.1
@@ -6,2 +6,10 @@ # Change Log | ||
## [2.0.1](https://github.com/thi-ng/umbrella/compare/@thi.ng/compare@2.0.0...@thi.ng/compare@2.0.1) (2021-10-13) | ||
**Note:** Version bump only for package @thi.ng/compare | ||
# [2.0.0](https://github.com/thi-ng/umbrella/compare/@thi.ng/compare@1.3.34...@thi.ng/compare@2.0.0) (2021-10-12) | ||
@@ -8,0 +16,0 @@ |
@@ -1,5 +0,5 @@ | ||
export * from "./compare"; | ||
export * from "./keys"; | ||
export * from "./numeric"; | ||
export * from "./reverse"; | ||
export * from "./compare.js"; | ||
export * from "./keys.js"; | ||
export * from "./numeric.js"; | ||
export * from "./reverse.js"; | ||
//# sourceMappingURL=index.d.ts.map |
@@ -1,4 +0,4 @@ | ||
export * from "./compare"; | ||
export * from "./keys"; | ||
export * from "./numeric"; | ||
export * from "./reverse"; | ||
export * from "./compare.js"; | ||
export * from "./keys.js"; | ||
export * from "./numeric.js"; | ||
export * from "./reverse.js"; |
@@ -1,2 +0,2 @@ | ||
import { compare } from "./compare"; | ||
import { compare } from "./compare.js"; | ||
const getKey = (k) => typeof k === "function" ? k : (x) => x[k]; | ||
@@ -3,0 +3,0 @@ export function compareByKey(a, cmp = compare) { |
{ | ||
"name": "@thi.ng/compare", | ||
"version": "2.0.0", | ||
"version": "2.0.1", | ||
"description": "Comparators with support for types implementing the @thi.ng/api/ICompare interface", | ||
@@ -37,6 +37,6 @@ "type": "module", | ||
"dependencies": { | ||
"@thi.ng/api": "^8.0.0" | ||
"@thi.ng/api": "^8.0.1" | ||
}, | ||
"devDependencies": { | ||
"@thi.ng/testament": "^0.1.0" | ||
"@thi.ng/testament": "^0.1.1" | ||
}, | ||
@@ -51,2 +51,5 @@ "keywords": [ | ||
}, | ||
"engines": { | ||
"node": ">=12.7" | ||
}, | ||
"files": [ | ||
@@ -73,3 +76,3 @@ "*.js", | ||
}, | ||
"gitHead": "9ac1344b38b565eb894306fbf72233b6c0b2d115" | ||
"gitHead": "2e6b3d7c0f4c5686c1e9bdb4902ed7d3f90bcc19" | ||
} |
@@ -54,6 +54,7 @@ <!-- This file is generated - DO NOT EDIT! --> | ||
For NodeJS (v14.6+): | ||
For Node.js REPL: | ||
```text | ||
node --experimental-specifier-resolution=node --experimental-repl-await | ||
# with flag only for < v16 | ||
node --experimental-repl-await | ||
@@ -60,0 +61,0 @@ > const compare = await import("@thi.ng/compare"); |
27839
180
Updated@thi.ng/api@^8.0.1