=========================================================== .___ __ __ _________________ __ __ __| _/|__|/ |_ / ___\_` __ \__ \ | | \/ __ | | \\_ __\ / /_/ > | \// __ \| | / /_/ | | || | \___ /|__| (____ /____/\____ | |__||__| /_____/ \/ \/ grep rough audit - static analysis tool v2.8 written by @Wireghoul =================================[justanotherhacker.com]=== node-prosemirror-state-1.3.3/CHANGELOG.md-128- node-prosemirror-state-1.3.3/CHANGELOG.md:129:All `Selection` objects now have [`$head`](https://prosemirror.net/docs/ref/version/0.19.0.html#state.Selection.$head)/[`$anchor`](https://prosemirror.net/docs/ref/version/0.19.0.html#state.Selection.$anchor) properties, so those can no longer be used to recognize text selections (use [`$cursor`](https://prosemirror.net/docs/ref/version/0.19.0.html#state.TextSelection.$cursor) or `instanceof`). node-prosemirror-state-1.3.3/CHANGELOG.md-130- ############################################## node-prosemirror-state-1.3.3/CHANGELOG.md-134- node-prosemirror-state-1.3.3/CHANGELOG.md:135:Text selections now have a [`$cursor`](https://prosemirror.net/docs/ref/version/0.19.0.html#state.TextSelection.$cursor) getter which returns a position only if this is a cursor selection. node-prosemirror-state-1.3.3/CHANGELOG.md-136- ############################################## node-prosemirror-state-1.3.3/src/selection.js-10- // Initialize a selection with the head and anchor and ranges. If no node-prosemirror-state-1.3.3/src/selection.js:11: // ranges are given, constructs a single range across `$anchor` and node-prosemirror-state-1.3.3/src/selection.js:12: // `$head`. node-prosemirror-state-1.3.3/src/selection.js-13- constructor($anchor, $head, ranges) { ############################################## node-prosemirror-state-1.3.3/src/selection.js-170- let cls = classesById[json.type] node-prosemirror-state-1.3.3/src/selection.js:171: if (!cls) throw new RangeError(`No selection type ${json.type} defined`) node-prosemirror-state-1.3.3/src/selection.js-172- return cls.fromJSON(doc, json)