UNPKG

241 BJavaScriptView Raw
1"use strict";
2
3/**
4 * @param {PluginOptions} opts Plugin options
5 * @param {Node} node
6 * @return {Boolean} true if the node is a UL or OL
7 */
8function isList(opts, node) {
9 return opts.types.includes(node.type);
10}
11
12module.exports = isList;
\No newline at end of file