@hugoalh/eol
An ECMAScript (JavaScript & TypeScript) module to handle end of line (EOL).
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.6%) to scientific vocabulary
Keywords
Repository
An ECMAScript (JavaScript & TypeScript) module to handle end of line (EOL).
Basic Info
Statistics
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 2
- Releases: 6
Topics
Metadata Files
README.md
End Of Line (EOL) (ES)
An ECMAScript (JavaScript & TypeScript) module to handle end of line (EOL).
🔰 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/eol-es/{Tag}/mod.ts - JSR:
[jsr:]@hugoalh/eol[@{Tag}] - NPM:
[npm:]@hugoalh/eol[@{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.jsoncpropertyexportsfor 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 EOLNormalizeStream extends TransformStream<string, string> { constructor(eol: EOLCharacter); }ts class LineStream extends TransformStream<string, string> { }ts function detectEOL(content: string): EOLCharacter | null;ts function detectEOLFromStream(stream: ReadableStream<string>): Promise<EOLCharacter | null>;ts function normalizeEOL(eol: EOLCharacter, content: string): string;ts type EOLCharacter = | typeof eolCRLF | typeof eolLF;
[!NOTE] - For the full or prettier documentation, can visit via: - Deno CLI
deno doc- JSR
✍️ Examples
ts detectEOL("Deno\r\nis not\r\nNode"); //=> "\r\n"ts detectEOL("Deno\nis not\r\nNode"); //=> "\r\n"ts detectEOL("Deno\nis not\nNode"); //=> "\n"ts detectEOL("Deno is not Node"); //=> nullts normalizeEOL(eolCurrent, "Deno\r\nis not\r\nNode"); //=> "Deno\nis not\nNode" (POSIX/UNIX Platforms) //=> "Deno\r\nis not\r\nNode" (Windows Platforms)ts normalizeEOL(eolLF, "Deno\r\nis not\r\nNode"); //=> "Deno\nis not\nNode" (POSIX/UNIX Platforms) //=> "Deno\nis not\nNode" (Windows Platforms)
Owner
- Name: hugoalh
- Login: hugoalh
- Kind: user
- Location: Everywhere
- Company: @hugoalh-studio
- Twitter: hugoalhofficial
- Repositories: 12
- Profile: https://github.com/hugoalh
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: "End Of Line (EOL)" 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/eol-es" keywords: - "ecmascript" - "ecmascript-module" - "end-of-line" - "eol" - "es" - "es-module" - "esm" - "esmodule" - "javascript" - "js" - "ts" - "typescript" license: "MIT"
GitHub Events
Total
- Release event: 6
- Watch event: 1
- Delete event: 7
- Issue comment event: 4
- Push event: 38
- Pull request review event: 4
- Pull request event: 13
- Create event: 14
Last Year
- Release event: 6
- Watch event: 1
- Delete event: 7
- Issue comment event: 4
- Push event: 38
- Pull request review event: 4
- Pull request event: 13
- Create event: 14
Issues and Pull Requests
Last synced: 5 months ago
All Time
- Total issues: 0
- Total pull requests: 6
- Average time to close issues: N/A
- Average time to close pull requests: about 8 hours
- Total issue authors: 0
- Total pull request authors: 1
- Average comments per issue: 0
- Average comments per pull request: 0.33
- Merged pull requests: 4
- Bot issues: 0
- Bot pull requests: 6
Past Year
- Issues: 0
- Pull requests: 6
- Average time to close issues: N/A
- Average time to close pull requests: about 8 hours
- Issue authors: 0
- Pull request authors: 1
- Average comments per issue: 0
- Average comments per pull request: 0.33
- Merged pull requests: 4
- Bot issues: 0
- Bot pull requests: 6
Top Authors
Issue Authors
Pull Request Authors
- dependabot[bot] (12)
Top Labels
Issue Labels
Pull Request Labels
Packages
- Total packages: 1
-
Total downloads:
- npm 232 last-month
- Total dependent packages: 0
- Total dependent repositories: 0
- Total versions: 7
- Total maintainers: 1
npmjs.org: @hugoalh/eol
A module to handle end of line (EOL).
- Homepage: https://github.com/hugoalh/eol-es#readme
- License: MIT
-
Latest release: 0.5.0
published 5 months ago
Rankings
Maintainers (1)
Dependencies
- hugoalh/send-discord-webhook-ghaction v7 composite
- actions/checkout v4.2.2 composite
- github/codeql-action/analyze v3.27.0 composite
- github/codeql-action/autobuild v3.27.0 composite
- github/codeql-action/init v3.27.0 composite
- actions/checkout v4.2.2 composite
- github/codeql-action/upload-sarif v3.27.0 composite
- microsoft/DevSkim-Action v1.0.14 composite
- actions/cache/restore v4.1.2 composite
- actions/cache/save v4.1.2 composite
- actions/checkout v4.2.2 composite
- actions/download-artifact v4.1.8 composite
- actions/setup-node v4.1.0 composite
- actions/upload-artifact v4.4.3 composite
- denoland/setup-deno v2.0.1 composite
- actions/cache/restore v4.1.2 composite
- actions/cache/save v4.1.2 composite
- actions/checkout v4.2.2 composite
- denoland/setup-deno v2.0.1 composite
- actions/checkout v4.2.2 composite
- hugoalh/scan-virus-ghaction/clamav v0.20.1 composite
- EndBug/label-sync v2.3.3 composite
- actions/checkout v4.2.2 composite