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.4

.eslintrc

19

build/text-annotator-v2.js

@@ -6,6 +6,9 @@ "use strict";

});
exports.default = void 0;
class TextAnnotator {
constructor(html) {
this.html = '';
this.text = '';
this.tags = [];
this.annotations = [];
this.html = html;

@@ -18,7 +21,4 @@

this.text = text; // [{ index, length, isCloseTag, annotationIndex* }]; ordered by index
this.tags = tags; // [{ index, length }]; unordered
this.annotations = [];
this.text = text;
this.tags = tags;
}

@@ -211,3 +211,5 @@

let text = html;
const tags = [];
const tags = []; // elaborate it later
//
let tag;

@@ -278,3 +280,2 @@ const tagRegEx = /<[^>]+>/;

var _default = TextAnnotator;
exports.default = _default;
exports.default = TextAnnotator;
{
"name": "text-annotator-v2",
"version": "1.1.2",
"version": "1.1.4",
"description": "A JavaScript library for locating and annotating plain text in HTML",

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

"lint": "./node_modules/.bin/eslint src/** test/** --fix",
"lint:nofix": "./node_modules/.bin/eslint src/** test/** --max-warnings 0",
"build": "babel src -d build",
"build": "babel dist -d build",
"build-min": "webpack --config webpack.config.js",

@@ -30,16 +29,17 @@ "test": "jest"

"devDependencies": {
"@babel/cli": "^7.13.0",
"@babel/core": "^7.13.8",
"@babel/preset-env": "^7.13.9",
"babel-jest": "^26.6.3",
"eslint": "^7.21.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-jest": "^24.1.5",
"eslint-plugin-prettier": "^3.3.1",
"jest": "^26.6.3",
"pre-commit": "^1.2.2",
"prettier": "2.2.1",
"typescript": "^4.3.2",
"webpack": "^4.46.0",
"webpack-cli": "^3.3.12"
"@babel/cli": "^7.17.10",
"@babel/core": "^7.18.5",
"@babel/preset-env": "^7.18.2",
"@typescript-eslint/eslint-plugin": "^5.29.0",
"@typescript-eslint/parser": "^5.29.0",
"babel-jest": "^28.1.1",
"eslint": "^8.18.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-jest": "^26.5.3",
"eslint-plugin-prettier": "^4.0.0",
"jest": "^28.1.1",
"prettier": "^2.7.1",
"typescript": "^4.7.4",
"webpack": "^5.73.0",
"webpack-cli": "^4.10.0"
},

@@ -57,34 +57,3 @@ "babel": {

]
},
"eslintConfig": {
"env": {
"browser": true,
"commonjs": true,
"es6": true
},
"extends": [
"eslint:recommended",
"plugin:jest/recommended",
"plugin:prettier/recommended"
],
"globals": {
"Atomics": "readonly",
"SharedArrayBuffer": "readonly"
},
"parserOptions": {
"ecmaVersion": 2018,
"sourceType": "module"
},
"plugins": [
"prettier"
]
},
"prettier": {
"semi": false,
"singleQuote": true
},
"pre-commit": [
"lint:nofix",
"test"
]
}
}

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

var TextAnnotator=function(t){var e={};function n(s){if(e[s])return e[s].exports;var i=e[s]={i:s,l:!1,exports:{}};return t[s].call(i.exports,i,i.exports,n),i.l=!0,i.exports}return n.m=t,n.c=e,n.d=function(t,e,s){n.o(t,e)||Object.defineProperty(t,e,{enumerable:!0,get:s})},n.r=function(t){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(t,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(t,"__esModule",{value:!0})},n.t=function(t,e){if(1&e&&(t=n(t)),8&e)return t;if(4&e&&"object"==typeof t&&t&&t.__esModule)return t;var s=Object.create(null);if(n.r(s),Object.defineProperty(s,"default",{enumerable:!0,value:t}),2&e&&"string"!=typeof t)for(var i in t)n.d(s,i,function(e){return t[e]}.bind(null,i));return s},n.n=function(t){var e=t&&t.__esModule?function(){return t.default}:function(){return t};return n.d(e,"a",e),e},n.o=function(t,e){return Object.prototype.hasOwnProperty.call(t,e)},n.p="",n(n.s=0)}([function(t,e,n){t.exports=n(1).default},function(t,e,n){"use strict";n.r(e);e.default=class{constructor(t){this.html=t;const{text:e,tags:n}=this._stripHTMLTags(t);this.text=e,this.tags=n,this.annotations=[]}search(t,{prefix:e="",postfix:n="",trim:s=!0,caseSensitive:i=!1,offset:o=0}={}){const{text:r,annotations:l}=this;let a=e+t+n;a=s?a.trim():a,a=i?a:a.toLowerCase();const h=(i?r:r.toLowerCase()).indexOf(a,o),c=s?e.replace(/^\s+/,"").length:e.length,u=s?n.replace(/\s+$/,"").length:n.length;return-1===h?-1:l.push({index:h+c,length:a.substring(c,a.length-u).length})-1}searchAll(t,e){let n=0;const s=[];let i=-1;const o=Object.assign({},e);do{i=this.search(t,o),-1!==i&&(n=this.annotations[i].index+1,o.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:o,_insert:r,_binaryInsert:l}=this,a=o[t],h=[a.index,a.index+a.length,0],c=[[...h]];for(let t=0;t<i.length;t++){const{index:e,length:n}=i[t];if(e<=h[0])c[0][2]+=n;else{if(!(e<h[1]))break;{const s=0===t?0:i[t-1].index,o=c[c.length-1];if(e===s)o[2]+=n;else{const t=o[1];o[1]=e,c.push([o[1],t,o[2]+n])}}}}const u=`<${e} class="${n} ${s}${t}">`,f=`</${e}>`,g=u.length,d=f.length;let x=0;for(let e=0;e<c.length;e++){const n=c[e];l(i,{index:n[0],length:g,isCloseTag:!1,annotationIndex:t},(t,e)=>t.index<=e.index?-1:1),l(i,{index:n[1],length:d,isCloseTag:!0,annotationIndex:t},(t,e)=>t.index-e.index),this.html=r(this.html,u,n[0]+n[2]+x),this.html=r(this.html,f,n[1]+n[2]+x+g),x+=g+d}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 o=0;for(let t=0;t<s.length;t++){const e=s[t];if(i.index<e.index)break;i.index>e.index?o+=e.length:void 0===e.annotationIndex?i.isCloseTag||(o+=e.length):i.annotationIndex<e.annotationIndex?e.isCloseTag&&(o+=e.length):i.isCloseTag||(o+=e.length)}this.html=this.html.slice(0,i.index+o)+this.html.slice(i.index+o+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,""),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,o=0,r=i;for(;s<i;){const l=Math.floor((i+s)/2),a=n(t[l],e);if(a<0?s=l:a>0?i=l:(i=l,s=l),o===s&&r===i)break;o=s,r=i}return t.splice(i,0,e),t}}}]);
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})();

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

import TextAnnotator from '../src/text-annotator-v2'
import TextAnnotator from '../dist/text-annotator-v2'

@@ -3,0 +3,0 @@ const html =

const path = require('path')
module.exports = {
entry: './src/index.js',
entry: './dist/index.js',
target: 'web',

@@ -6,0 +6,0 @@ mode: 'production',