-
Notifications
You must be signed in to change notification settings - Fork 36
Open
Labels
Description
Line 45 in 860d577
| var walker = new Walker(); |
In my case, I would like to use a walker with custom options
var walker = new Walker( {
plugins: [
'flow',
'classPrivateProperties',
'nullishCoalescingOperator',
]
} )how about adding walkerOptions in second parameter, e.g.
precinct( content, { walkerOptions: {} } )and also thanks for your great work!