@keen.io/data-export
Advanced tools
Comparing version 1.2.1 to 1.2.2
@@ -6,2 +6,10 @@ # Change Log | ||
## [1.2.2](https://github.com/keen/keen/compare/@keen.io/data-export@1.2.1...@keen.io/data-export@1.2.2) (2021-10-05) | ||
**Note:** Version bump only for package @keen.io/data-export | ||
## [1.2.1](https://github.com/keen/keen/compare/@keen.io/data-export@1.2.0...@keen.io/data-export@1.2.1) (2021-10-05) | ||
@@ -8,0 +16,0 @@ |
@@ -27,9 +27,5 @@ import { __read, __spread } from "tslib"; | ||
var columns = Object.keys(firstRecord).sort(function (a, b) { | ||
if (columnsOrder.includes(a)) { | ||
return -1; | ||
} | ||
if (columnsOrder.includes(b)) { | ||
return 1; | ||
} | ||
return 0; | ||
if (!columnsOrder.includes(a)) | ||
return 0; | ||
return columnsOrder.indexOf(a) - columnsOrder.indexOf(b); | ||
}); | ||
@@ -36,0 +32,0 @@ var renamedColumns = columnsRename |
{ | ||
"name": "@keen.io/data-export", | ||
"version": "1.2.1", | ||
"version": "1.2.2", | ||
"description": "Keen data export utilities", | ||
@@ -40,3 +40,3 @@ "author": "Keen.IO <team@keen.io> (https://keen.io/)", | ||
}, | ||
"gitHead": "98d6ae2026a4d1b4516e8f00e7f299c593110730" | ||
"gitHead": "db00f4363ce136a357593ea865c38f06c31745f2" | ||
} |
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
33814
615