We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4dbacd7 commit d9eeff0Copy full SHA for d9eeff0
src/index.js
@@ -1,13 +1,12 @@
1
import postcss from 'postcss';
2
-import uniqid from './uniqid';
3
4
export default postcss.plugin('postcss-filter-plugins', ({
5
template = ({postcssPlugin}) => `Found duplicate plugin: ${postcssPlugin}`,
6
silent = false,
7
exclude = [],
8
direction = 'both',
9
} = {}) => {
10
- const id = uniqid();
+ const id = Math.random().toString();
11
let prev, next, both;
12
13
switch (direction) {
src/uniqid.js
0 commit comments