UNPKG

@atlaskit/renderer

Version:
15 lines (14 loc) 338 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.getListIndentLevel = getListIndentLevel; function getListIndentLevel(path) { var count = 1; path.forEach(function (node) { if (node.type.name === 'bulletList' || node.type.name === 'orderedList') { count++; } }); return count; }