Skip to content

Commit

Permalink
🔥 Remove filterIdenticalValues()
Browse files Browse the repository at this point in the history
  • Loading branch information
kghugo committed Aug 4, 2020
1 parent 1b7b290 commit 0c77eb7
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions utilities/helper.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,6 @@ const isIncluded = (decl, inclusionRules) => {
return inclusionRules.some(unit => RegExp(unit).test(decl));
}

const filterIdenticalValues = (sourceArray, arrayToCheckAgainst) => {
return sourceArray.filter(item => !arrayToCheckAgainst.includes(item))
}

const shouldBeTransformed = (decl, options) => {

if (hasWrappedInRFS(decl)) {
Expand Down

0 comments on commit 0c77eb7

Please sign in to comment.