UNPKG

slate-edit-list

Version:

A Slate plugin to handle keyboard events in lists.

14 lines (10 loc) 256 B
// @flow import { type Node } from 'slate'; import type Options from '../options'; /** * True if the node is a list container */ function isList(opts: Options, node: Node): boolean { return opts.types.includes(node.type); } export default isList;