We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 81d2280 commit 8201c22Copy full SHA for 8201c22
test/all-options.js
@@ -2,7 +2,7 @@ import test from 'tape';
2
import mixer from '../src/index';
3
4
test('all options work together', (t) => {
5
- var mix = mixer({
+ const mix = mixer({
6
filter(sourceValue, targetValue, key) { return key[0] !== '_'; },
7
transform(resultingValue, targetValue, key) { return key === 'name' ? 'new name' : resultingValue; },
8
chain: true,
0 commit comments