mirror of https://github.com/webpack/webpack.git
12 lines
157 B
JavaScript
12 lines
157 B
JavaScript
|
import { uniq } from "lodash-es";
|
||
|
|
||
|
export default class SomeClass {
|
||
|
message(...args) {
|
||
|
console.log(...args);
|
||
|
}
|
||
|
|
||
|
unusedUniq(array) {
|
||
|
uniq(array);
|
||
|
}
|
||
|
}
|