![Oracle Drags Its Feet in the JavaScript Trademark Dispute](https://cdn.sanity.io/images/cgdhsj6q/production/919c3b22c24f93884c548d60cbb338e819ff2435-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Oracle Drags Its Feet in the JavaScript Trademark Dispute
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
A versatile diff computation package, supporting various diff methods and line-by-line comparisons.
Diffling is a utility for comparing and displaying differences between text or code snippets. It provides functionality to generate line-by-line comparisons and highlight changes between original and modified versions of text.
npm install diffling
or
yarn add diffling
Here's a basic example of how to use Diffling:
import { diffling } from 'diffling';
const original = `line1
line2
line3`;
const modified = `line1
line2 modified
line4`;
const diff = diffling(original, modified);
console.log(diff);
getLineDiffInformation(original: string, modified: string): Lines
Generates a detailed diff between two pieces of text or JSON objects.
original
: The original text or JSON objectmodified
: The modified text or JSON objectoffset
: (Optional) Starting line number for the diff (default: 0)Returns an object containing the line-by-line diff information and the indices of changed lines.
Contributions are welcome! Please feel free to submit a Pull Request.
This project is licensed under the MIT License - see the LICENSE file for details.
This project is heavily based on react-diff-viewer-continued. We are grateful for their work, which forms the foundation of this repository.
This project is not affiliated with or endorsed by the creators of react-diff-viewer-continued.
FAQs
A versatile diff computation package, supporting various diff methods and line-by-line comparisons.
The npm package diffling receives a total of 0 weekly downloads. As such, diffling popularity was classified as not popular.
We found that diffling demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.