merge-timerange
Advanced tools
Comparing version 0.1.6 to 0.1.7
@@ -213,4 +213,4 @@ 'use strict'; | ||
let sortByStart = ({}) [extend](sort) [extend]({start: 1, _id: 1}); | ||
let sortByEnd = ({}) [extend](sort) [extend]({end: 1, _id: 1}); | ||
let sortByStart = ({}) [extend](sort) [extend]({start: 1}); | ||
let sortByEnd = ({}) [extend](sort) [extend]({end: 1}); | ||
@@ -217,0 +217,0 @@ let ranges = byAll [mapValues]((group) => group [reduce]((g1, g2) => ({ |
{ | ||
"name": "merge-timerange", | ||
"version": "0.1.6", | ||
"version": "0.1.7", | ||
"description": "Merge time ranges", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
@@ -27,3 +27,3 @@ 'use strict'; | ||
return {sort: function(sort) { | ||
sort [test]('Sort must match', {head: 1, end: 1, _id: 1}); | ||
sort [test]('Sort must match', {head: 1, end: 1}); | ||
@@ -51,3 +51,3 @@ return {exec: () => new Promise((resolve) => { | ||
return {sort: function(sort) { | ||
sort [test]('Sort must match', {head: 1, start: 1, _id: 1}); | ||
sort [test]('Sort must match', {head: 1, start: 1}); | ||
@@ -54,0 +54,0 @@ return {exec: () => new Promise((resolve) => { |
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
21062