@feathersjs/commons
Advanced tools
Comparing version 1.3.0 to 1.3.1
# Change Log | ||
## [v1.3.0](https://github.com/feathersjs/commons/tree/v1.3.0) (2017-11-20) | ||
[Full Changelog](https://github.com/feathersjs/commons/compare/v1.2.0...v1.3.0) | ||
**Merged pull requests:** | ||
- Add a toJSON method to the hook context [\#63](https://github.com/feathersjs/commons/pull/63) ([daffl](https://github.com/daffl)) | ||
- updating contributing guide and issue template [\#61](https://github.com/feathersjs/commons/pull/61) ([ekryski](https://github.com/ekryski)) | ||
## [v1.2.0](https://github.com/feathersjs/commons/tree/v1.2.0) (2017-10-25) | ||
@@ -4,0 +12,0 @@ [Full Changelog](https://github.com/feathersjs/commons/compare/v1.1.0...v1.2.0) |
@@ -27,3 +27,3 @@ const { _ } = require('./utils'); | ||
function convertSort (sort) { | ||
if (typeof sort !== 'object') { | ||
if (typeof sort !== 'object' || Array.isArray(sort)) { | ||
return sort; | ||
@@ -30,0 +30,0 @@ } |
{ | ||
"name": "@feathersjs/commons", | ||
"version": "1.3.0", | ||
"version": "1.3.1", | ||
"description": "Shared Feathers utility functions", | ||
@@ -52,4 +52,4 @@ "homepage": "https://github.com/feathersjs/commons", | ||
"mocha": "^4.0.0", | ||
"semistandard": "^11.0.0" | ||
"semistandard": "^12.0.0" | ||
} | ||
} |
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
37428
13