New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

text-annotator-v2

Package Overview
Dependencies
Maintainers
1
Versions
19
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

text-annotator-v2 - npm Package Compare versions

Comparing version

to
1.1.5

8

build/index.js
"use strict";
module.exports = require('./text-annotator-v2.js').default;
Object.defineProperty(exports, "__esModule", {
value: true
});
const TextAnnotator = require("./text-annotator-v2.js");
module.exports = TextAnnotator.default;

3

build/text-annotator-v2.js

@@ -210,3 +210,2 @@ "use strict";

const tags = []; // elaborate it later
//

@@ -217,3 +216,3 @@ let tag;

while (tag = text.match(tagRegEx)) {
text = text.replace(tag, '');
text = text.replace(tag[0], '');
tags.push({

@@ -220,0 +219,0 @@ index: tag.index,

@@ -1,1 +0,4 @@

module.exports = require('./text-annotator-v2.js').default;
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
const TextAnnotator = require("./text-annotator-v2.js");
module.exports = TextAnnotator.default;

@@ -184,7 +184,6 @@ "use strict";

// elaborate it later
//
let tag;
const tagRegEx = /<[^>]+>/;
while ((tag = text.match(tagRegEx))) {
text = text.replace(tag, '');
text = text.replace(tag[0], '');
tags.push({

@@ -191,0 +190,0 @@ index: tag.index,

{
"name": "text-annotator-v2",
"version": "1.1.4",
"version": "1.1.5",
"description": "A JavaScript library for locating and annotating plain text in HTML",

@@ -8,3 +8,3 @@ "main": "build/text-annotator-v2.js",

"lint": "./node_modules/.bin/eslint src/** test/** --fix",
"build": "babel dist -d build",
"build": "tsc && babel dist -d build",
"build-min": "webpack --config webpack.config.js",

@@ -11,0 +11,0 @@ "test": "jest"

@@ -1,1 +0,1 @@

var TextAnnotator;(()=>{var t={590:(t,n,e)=>{t.exports=e(137).default},137:(t,n)=>{"use strict";n.default=class{constructor(t){this.html="",this.text="",this.tags=[],this.annotations=[],this.html=t;const{text:n,tags:e}=this._stripHTMLTags(t);this.text=n,this.tags=e}search(t,{prefix:n="",postfix:e="",trim:s=!0,caseSensitive:i=!1,offset:a=0}={}){const{text:l,annotations:o}=this;let h=n+t+e;h=s?h.trim():h,h=i?h:h.toLowerCase();const r=(i?l:l.toLowerCase()).indexOf(h,a),g=s?n.replace(/^\s+/,"").length:n.length,c=s?e.replace(/\s+$/,"").length:e.length;return-1===r?-1:o.push({index:r+g,length:h.substring(g,h.length-c).length})-1}searchAll(t,n){let e=0;const s=[];let i=-1;const a=Object.assign({},n);do{i=this.search(t,a),-1!==i&&(e=this.annotations[i].index+1,a.offset=e,s.push(i))}while(-1!==i);return s}annotate(t,{tagName:n="span",baseClassName:e="annotation",classPattern:s="annotation-"}={}){const{tags:i,annotations:a,_insert:l,_binaryInsert:o}=this,h=a[t],r=[h.index,h.index+h.length,0],g=[[...r]];for(let t=0;t<i.length;t++){const{index:n,length:e}=i[t];if(n<=r[0])g[0][2]+=e;else{if(!(n<r[1]))break;{const s=0===t?0:i[t-1].index,a=g[g.length-1];if(n===s)a[2]+=e;else{const t=a[1];a[1]=n,g.push([a[1],t,a[2]+e])}}}}const c=`<${n} class="${e} ${s}${t}">`,x=`</${n}>`,d=c.length,f=x.length;let u=0;for(let n=0;n<g.length;n++){const e=g[n];o(i,{index:e[0],length:d,isCloseTag:!1,annotationIndex:t},((t,n)=>t.index<=n.index?-1:1)),o(i,{index:e[1],length:f,isCloseTag:!0,annotationIndex:t},((t,n)=>t.index-n.index)),this.html=l(this.html,c,e[0]+e[2]+u),this.html=l(this.html,x,e[1]+e[2]+u+d),u+=d+f}return this.html}annotateAll(t,n){return t.forEach((t=>{this.annotate(t,n)})),this.html}unannotate(t){const n=[],e=this.tags.filter(((e,s)=>(e.annotationIndex===t&&n.push(s),e.annotationIndex===t))),s=this.tags.filter((n=>n.annotationIndex!==t));for(let t=0;t<e.length;t++){const i=e[t];let a=0;for(let t=0;t<s.length;t++){const n=s[t];if(i.index<n.index)break;i.index>n.index?a+=n.length:void 0===n.annotationIndex?i.isCloseTag||(a+=n.length):i.annotationIndex<n.annotationIndex?n.isCloseTag&&(a+=n.length):i.isCloseTag||(a+=n.length)}this.html=this.html.slice(0,i.index+a)+this.html.slice(i.index+a+i.length),this.tags.splice(n[t]-t,1)}return this.html}unannotateAll(t){return t.forEach((t=>{this.unannotate(t)})),this.html}_stripHTMLTags(t){let n=t;const e=[];let s;const i=/<[^>]+>/;for(;s=n.match(i);)n=n.replace(s,""),e.push({index:s.index,length:s[0].length,isCloseTag:s[0].startsWith("</")});return{text:n,tags:e}}_insert(t,n,e){return t.slice(0,e)+n+t.slice(e)}_binaryInsert(t,n,e){if(0===t.length||e(t[0],n)>=0)return t.splice(0,0,n),t;if(t.length>0&&e(t[t.length-1],n)<=0)return t.splice(t.length,0,n),t;let s=0,i=t.length,a=0,l=i;for(;s<i;){const o=Math.floor((i+s)/2),h=e(t[o],n);if(h<0?s=o:h>0?i=o:(i=o,s=o),a===s&&l===i)break;a=s,l=i}return t.splice(i,0,n),t}}}},n={},e=function e(s){var i=n[s];if(void 0!==i)return i.exports;var a=n[s]={exports:{}};return t[s](a,a.exports,e),a.exports}(590);TextAnnotator=e})();
var TextAnnotator;(()=>{"use strict";var t={590:(t,e,n)=>{Object.defineProperty(e,"__esModule",{value:!0});const s=n(137);t.exports=s.default},137:(t,e)=>{Object.defineProperty(e,"__esModule",{value:!0}),e.default=class{constructor(t){this.html="",this.text="",this.tags=[],this.annotations=[],this.html=t;const{text:e,tags:n}=this._stripHTMLTags(t);this.text=e,this.tags=n}search(t,{prefix:e="",postfix:n="",trim:s=!0,caseSensitive:i=!1,offset:a=0}={}){const{text:l,annotations:o}=this;let h=e+t+n;h=s?h.trim():h,h=i?h:h.toLowerCase();const r=(i?l:l.toLowerCase()).indexOf(h,a),g=s?e.replace(/^\s+/,"").length:e.length,c=s?n.replace(/\s+$/,"").length:n.length;return-1===r?-1:o.push({index:r+g,length:h.substring(g,h.length-c).length})-1}searchAll(t,e){let n=0;const s=[];let i=-1;const a=Object.assign({},e);do{i=this.search(t,a),-1!==i&&(n=this.annotations[i].index+1,a.offset=n,s.push(i))}while(-1!==i);return s}annotate(t,{tagName:e="span",baseClassName:n="annotation",classPattern:s="annotation-"}={}){const{tags:i,annotations:a,_insert:l,_binaryInsert:o}=this,h=a[t],r=[h.index,h.index+h.length,0],g=[[...r]];for(let t=0;t<i.length;t++){const{index:e,length:n}=i[t];if(e<=r[0])g[0][2]+=n;else{if(!(e<r[1]))break;{const s=0===t?0:i[t-1].index,a=g[g.length-1];if(e===s)a[2]+=n;else{const t=a[1];a[1]=e,g.push([a[1],t,a[2]+n])}}}}const c=`<${e} class="${n} ${s}${t}">`,x=`</${e}>`,d=c.length,f=x.length;let u=0;for(let e=0;e<g.length;e++){const n=g[e];o(i,{index:n[0],length:d,isCloseTag:!1,annotationIndex:t},((t,e)=>t.index<=e.index?-1:1)),o(i,{index:n[1],length:f,isCloseTag:!0,annotationIndex:t},((t,e)=>t.index-e.index)),this.html=l(this.html,c,n[0]+n[2]+u),this.html=l(this.html,x,n[1]+n[2]+u+d),u+=d+f}return this.html}annotateAll(t,e){return t.forEach((t=>{this.annotate(t,e)})),this.html}unannotate(t){const e=[],n=this.tags.filter(((n,s)=>(n.annotationIndex===t&&e.push(s),n.annotationIndex===t))),s=this.tags.filter((e=>e.annotationIndex!==t));for(let t=0;t<n.length;t++){const i=n[t];let a=0;for(let t=0;t<s.length;t++){const e=s[t];if(i.index<e.index)break;i.index>e.index?a+=e.length:void 0===e.annotationIndex?i.isCloseTag||(a+=e.length):i.annotationIndex<e.annotationIndex?e.isCloseTag&&(a+=e.length):i.isCloseTag||(a+=e.length)}this.html=this.html.slice(0,i.index+a)+this.html.slice(i.index+a+i.length),this.tags.splice(e[t]-t,1)}return this.html}unannotateAll(t){return t.forEach((t=>{this.unannotate(t)})),this.html}_stripHTMLTags(t){let e=t;const n=[];let s;const i=/<[^>]+>/;for(;s=e.match(i);)e=e.replace(s[0],""),n.push({index:s.index,length:s[0].length,isCloseTag:s[0].startsWith("</")});return{text:e,tags:n}}_insert(t,e,n){return t.slice(0,n)+e+t.slice(n)}_binaryInsert(t,e,n){if(0===t.length||n(t[0],e)>=0)return t.splice(0,0,e),t;if(t.length>0&&n(t[t.length-1],e)<=0)return t.splice(t.length,0,e),t;let s=0,i=t.length,a=0,l=i;for(;s<i;){const o=Math.floor((i+s)/2),h=n(t[o],e);if(h<0?s=o:h>0?i=o:(i=o,s=o),a===s&&l===i)break;a=s,l=i}return t.splice(i,0,e),t}}}},e={},n=function n(s){var i=e[s];if(void 0!==i)return i.exports;var a=e[s]={exports:{}};return t[s](a,a.exports,n),a.exports}(590);TextAnnotator=n})();

@@ -1,1 +0,2 @@

module.exports = require('./text-annotator-v2.js').default
import TextAnnotator = require('./text-annotator-v2.js')
module.exports = TextAnnotator.default

@@ -255,6 +255,6 @@ type Location = {

// elaborate it later
let tag: any
let tag: RegExpMatchArray
const tagRegEx = /<[^>]+>/
while ((tag = text.match(tagRegEx))) {
text = text.replace(tag, '')
text = text.replace(tag[0], '')
tags.push({

@@ -276,3 +276,3 @@ index: tag.index,

// pure function
_binaryInsert(arr: any[], val: any, comparator: (a: any, b: any) => any) {
_binaryInsert(arr: Tag[], val: Tag, comparator: (a: {index: number}, b: {index: number}) => number) {
if (arr.length === 0 || comparator(arr[0], val) >= 0) {

@@ -279,0 +279,0 @@ arr.splice(0, 0, val)