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 6a1561c commit ba9deb0Copy full SHA for ba9deb0
test/src/RedBlackTree/remove.js
@@ -14,8 +14,9 @@ const {shuffle} = entropy(seed);
14
15
import {RedBlackTree, _debug} from '../../../src/index.js';
16
17
-// eslint-disable-next-line unicorn/import-style
18
-import {bgRed as red, bgBlack as black} from 'chalk';
+import chalk from 'chalk';
+
19
+const {bgRed: red, bgBlack: black} = chalk;
20
21
const debug = _debug({red, black});
22
0 commit comments