Skip to content
This repository was archived by the owner on Jan 27, 2019. It is now read-only.

Commit 17af4af

Browse files
committed
Bump dependencies
1 parent 44b227a commit 17af4af

8 files changed

+2292
-751
lines changed

lib/get-repeated-values.js

+8-8
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,13 @@ module.exports = function (values) {
55

66
return _.uniq(
77
_.clone(values)
8-
.sort()
9-
.reduce(function (a, b, i, arr) {
10-
if (b === arr[i - 1] || b === arr[i + 1]) {
11-
return a.concat(b)
12-
} else {
13-
return a
14-
}
15-
}, [])
8+
.sort()
9+
.reduce(function (a, b, i, arr) {
10+
if (b === arr[i - 1] || b === arr[i + 1]) {
11+
return a.concat(b)
12+
} else {
13+
return a
14+
}
15+
}, [])
1616
)
1717
}

lib/selector-parser.js

-1
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,3 @@ var Parser = require('css-selector-parser').CssSelectorParser
44
var parser = new Parser()
55

66
module.exports = parser
7-

0 commit comments

Comments
 (0)