@hugoalh/string-dissect

An ECMAScript (JavaScript & TypeScript) module to dissect the string; Safe with the emojis, URLs, and words.

https://github.com/hugoalh/string-dissect-es

Science Score: 44.0%

This score indicates how likely this project is to be science-related based on various indicators:

  • CITATION.cff file
    Found CITATION.cff file
  • codemeta.json file
    Found codemeta.json file
  • .zenodo.json file
    Found .zenodo.json file
  • DOI references
  • Academic publication links
  • Academic email domains
  • Institutional organization owner
  • JOSS paper metadata
  • Scientific vocabulary similarity
    Low similarity (7.1%) to scientific vocabulary

Keywords

dissect ecmascript ecmascript-module es es-module esm esmodule javascript js string ts typescript
Last synced: 4 months ago · JSON representation ·

Repository

An ECMAScript (JavaScript & TypeScript) module to dissect the string; Safe with the emojis, URLs, and words.

Basic Info
  • Host: GitHub
  • Owner: hugoalh
  • License: other
  • Language: TypeScript
  • Default Branch: main
  • Homepage:
  • Size: 131 KB
Statistics
  • Stars: 1
  • Watchers: 1
  • Forks: 0
  • Open Issues: 2
  • Releases: 7
Topics
dissect ecmascript ecmascript-module es es-module esm esmodule javascript js string ts typescript
Created almost 2 years ago · Last pushed 5 months ago
Metadata Files
Readme Contributing License Citation Codeowners Security

README.md

String Dissect (ES)

⚖️ MIT

GitHub: hugoalh/string-dissect-es JSR: @hugoalh/string-dissect NPM: @hugoalh/string-dissect

An ECMAScript (JavaScript & TypeScript) module to dissect the string; Safe with the emojis, URLs, and words.

🔰 Begin

🎯 Targets

| Targets | Remote | JSR | NPM | |:--|:-:|:-:|:-:| | Bun >= v1.1.0 | ❌ | ✔️ | ✔️ | | Deno >= v2.1.0 | ✔️ | ✔️ | ✔️ | | NodeJS >= v20.9.0 | ❌ | ✔️ | ✔️ |

[!NOTE] - It is possible to use this module in other methods/ways which not listed in here, however those methods/ways are not officially supported, and should beware maybe cause security issues.

#️⃣ Resources Identifier

  • Remote - GitHub Raw: https://raw.githubusercontent.com/hugoalh/string-dissect-es/{Tag}/mod.ts
  • JSR: [jsr:]@hugoalh/string-dissect[@{Tag}]
  • NPM: [npm:]@hugoalh/string-dissect[@{Tag}]

[!NOTE] - For usage of remote resources, it is recommended to import the entire module with the main path mod.ts, however it is also able to import part of the module with sub path if available, but do not import if:

  • it's path has an underscore prefix (e.g.: _foo.ts, _util/bar.ts), or
  • it is a benchmark or test file (e.g.: foo.bench.ts, foo.test.ts), or
  • it's symbol has an underscore prefix (e.g.: _bar, _foo).

These elements are not considered part of the public API, thus no stability is guaranteed for them. - For usage of JSR or NPM resources, it is recommended to import the entire module with the main entrypoint, however it is also able to import part of the module with sub entrypoint if available, please visit the file jsr.jsonc property exports for available sub entrypoints. - It is recommended to use this module with tag for immutability.

🛡️ Runtime Permissions

This module does not request any runtime permission.

🧩 APIs

  • ts class StringDissector { constructor(options?: StringDissectorOptions); dissect(item: string): Generator<StringSegmentDescriptor>; }
  • ts interface StringDissectorOptions { locales?: Intl.LocalesArgument; outputANSI?: boolean; safeURLs?: boolean; safeWords?: boolean; }
  • ts interface StringSegmentDescriptor { indexEnd: number; indexStart: number; type: StringSegmentType; value: string; }
  • ts type StringSegmentType = | "ansi" | "character" | "emoji" | "url" | "word";

[!NOTE] - For the full or prettier documentation, can visit via: - Deno CLI deno doc - JSR

✍️ Examples

  • ```ts const sample1 = "Vel ex sit est sit est tempor enim et voluptua consetetur gubergren gubergren ut.";

Array.from(new StringDissector().dissect(sample1)); //=> // [ // { value: "Vel", type: "word" }, // { value: " ", type: "character" }, // { value: "ex", type: "word" }, // { value: " ", type: "character" }, // { value: "sit", type: "word" }, // { value: " ", type: "character" }, // { value: "est", type: "word" }, // { value: " ", type: "character" }, // ... +20 // ]

Array.from(new StringDissector({ safeWords: false }).dissect(sample1)); //=> // [ // { value: "V", type: "character" }, // { value: "e", type: "character" }, // { value: "l", type: "character" }, // { value: " ", type: "character" }, // { value: "e", type: "character" }, // { value: "x", type: "character" }, // { value: " ", type: "character" }, // { value: "s", type: "character" }, // ... +73 // ] -ts Array.from(new StringDissector().dissect("GitHub homepage is https://github.com.")); //=> // [ // { value: "GitHub", type: "word" }, // { value: " ", type: "character" }, // { value: "homepage", type: "word" }, // { value: " ", type: "character" }, // { value: "is", type: "word" }, // { value: " ", type: "character" }, // { value: "https://github.com", type: "url" }, // { value: ".", type: "character" } // ] -ts Array.from(new StringDissector().dissect("🤝💑💏👪👨‍👩‍👧‍👦👩‍👦👩‍👧‍👦🧑‍🤝‍🧑"), ({ value }) => { return value; }); //=> [ "🤝", "💑", "💏", "👪", "👨‍👩‍👧‍👦", "👩‍👦", "👩‍👧‍👦", "🧑‍🤝‍🧑" ] ```

Owner

  • Name: hugoalh
  • Login: hugoalh
  • Kind: user
  • Location: Everywhere
  • Company: @hugoalh-studio

Lead of @hugoalh-studio; Full time software developer; Part time freelancer

Citation (CITATION.cff)

# yaml-language-server: $schema=https://citation-file-format.github.io/1.2.0/schema.json
cff-version: "1.2.0"
title: "String Dissect (ES)"
message: "If you use this software, please cite it using the metadata from this file."
type: "software"
authors:
  - name: "hugoalh"
repository-code: "https://github.com/hugoalh/string-dissect-es"
keywords:
  - "dissect"
  - "ecmascript"
  - "ecmascript-module"
  - "es"
  - "es-module"
  - "esm"
  - "esmodule"
  - "javascript"
  - "js"
  - "string"
  - "ts"
  - "typescript"
license: "MIT"

GitHub Events

Total
  • Release event: 2
  • Delete event: 6
  • Issue comment event: 5
  • Push event: 33
  • Pull request review event: 4
  • Pull request event: 8
  • Create event: 5
Last Year
  • Release event: 2
  • Delete event: 6
  • Issue comment event: 5
  • Push event: 33
  • Pull request review event: 4
  • Pull request event: 8
  • Create event: 5

Issues and Pull Requests

Last synced: 5 months ago

All Time
  • Total issues: 0
  • Total pull requests: 9
  • Average time to close issues: N/A
  • Average time to close pull requests: 20 days
  • Total issue authors: 0
  • Total pull request authors: 1
  • Average comments per issue: 0
  • Average comments per pull request: 0.78
  • Merged pull requests: 4
  • Bot issues: 0
  • Bot pull requests: 9
Past Year
  • Issues: 0
  • Pull requests: 8
  • Average time to close issues: N/A
  • Average time to close pull requests: 21 days
  • Issue authors: 0
  • Pull request authors: 1
  • Average comments per issue: 0
  • Average comments per pull request: 0.75
  • Merged pull requests: 4
  • Bot issues: 0
  • Bot pull requests: 8
Top Authors
Issue Authors
Pull Request Authors
  • dependabot[bot] (12)
Top Labels
Issue Labels
Pull Request Labels
Type/Dependency 📦 (11) Platform/GitHubActions (9) Status/Pending 🔵 (6) Priority/Low 🟢 (5) Platform/NodeJS (2) dependency 📦 (1) github-actions (1)

Packages

  • Total packages: 1
  • Total downloads:
    • npm 178 last-month
  • Total dependent packages: 1
  • Total dependent repositories: 1
  • Total versions: 14
  • Total maintainers: 1
npmjs.org: @hugoalh/string-dissect

A module to dissect the string; Safe with the emojis, URLs, and words.

  • Versions: 14
  • Dependent Packages: 1
  • Dependent Repositories: 1
  • Downloads: 178 Last month
Rankings
Dependent repos count: 10.3%
Downloads: 11.9%
Average: 15.0%
Forks count: 15.4%
Stargazers count: 16.7%
Dependent packages count: 20.9%
Maintainers (1)
Last synced: 5 months ago

Dependencies

.github/workflows/announce-new-release.yml actions
  • hugoalh/send-discord-webhook-ghaction v6.0.2 composite
.github/workflows/invoke-codeql-analysis.yml actions
.github/workflows/publish-deno-package.yml actions
.github/workflows/review-deno-code.yml actions
.github/workflows/scan-virus.yml actions
.github/workflows/sync-labels.yml actions
.github/workflows/invoke-devskim-analysis.yml actions
npm/package.json npm
  • typescript ^5.4.3 development
  • ansi-regex 6.0.1
  • url-regex-safe 4.0.0