|
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!
node-precinct/index.js
Line 45 in 860d577
In my case, I would like to use a walker with custom options
how about adding
walkerOptionsin second parameter, e.g.and also thanks for your great work!