=========================================================== .___ __ __ _________________ __ __ __| _/|__|/ |_ / ___\_` __ \__ \ | | \/ __ | | \\_ __\ / /_/ > | \// __ \| | / /_/ | | || | \___ /|__| (____ /____/\____ | |__||__| /_____/ \/ \/ grep rough audit - static analysis tool v2.8 written by @Wireghoul =================================[justanotherhacker.com]=== node-prosemirror-transform-1.2.8/src/replace.js-65-// represent the open side of the replacement. It starts at node-prosemirror-transform-1.2.8/src/replace.js:66:// `$from`, then moves forward as content is placed, and is finally node-prosemirror-transform-1.2.8/src/replace.js:67:// reconciled with `$to`. node-prosemirror-transform-1.2.8/src/replace.js-68-// ############################################## node-prosemirror-transform-1.2.8/src/replace.js-72-// - `placed` is a fragment of placed content. Its open-start value node-prosemirror-transform-1.2.8/src/replace.js:73:// is implicit in `$from`, and its open-end value in `frontier`. node-prosemirror-transform-1.2.8/src/replace.js-74-class Fitter { ############################################## node-prosemirror-transform-1.2.8/src/replace.js-105- // When there's inline content directly after the frontier _and_ node-prosemirror-transform-1.2.8/src/replace.js:106: // directly after `this.$to`, we must generate a `ReplaceAround` node-prosemirror-transform-1.2.8/src/replace.js-107- // step that pulls that content into the node after the frontier. node-prosemirror-transform-1.2.8/src/replace.js-108- // That means the fitting must be done to the end of the textblock node-prosemirror-transform-1.2.8/src/replace.js:109: // node after `this.$to`, not `this.$to` itself. node-prosemirror-transform-1.2.8/src/replace.js-110- let moveInline = this.mustMoveInline(), placedSize = this.placed.size - this.depth - this.$from.depth ############################################## node-prosemirror-transform-1.2.8/src/replace.js-113- node-prosemirror-transform-1.2.8/src/replace.js:114: // If closing to `$to` succeeded, create a step node-prosemirror-transform-1.2.8/src/replace.js-115- let content = this.placed, openStart = $from.depth, openEnd = $to.depth ############################################## node-prosemirror-transform-1.2.8/src/step.js-61- let type = stepsByID[json.stepType] node-prosemirror-transform-1.2.8/src/step.js:62: if (!type) throw new RangeError(`No step type ${json.stepType} defined`) node-prosemirror-transform-1.2.8/src/step.js-63- return type.fromJSON(schema, json)