Skip to main content
This release was yanked — the latest version of @coven/compare is 0.3.3. Jump to latest

Built and signed on GitHub Actions

⚖️ Minimalist diffing.

This package works with Cloudflare Workers, Node.js, Deno, Bun, Browsers
This package works with Cloudflare Workers
This package works with Node.js
This package works with Deno
This package works with Bun
This package works with Browsers
JSR Score
100%
Published
4 months ago (0.0.7)
Package root>constants.ts
/** * Create Difference kind. */ export const CREATE = "CREATE"; /** * Delete Difference kind. */ export const DELETE = "DELETE"; /** * `IteratorResult.done` property. */ export const DONE = "done"; /** * Name of kind in result. */ export const KIND = "kind"; /** * Name of left value. */ export const LEFT = "left"; /** * Symbol used to represent a missing value (because `undefined` is valid). */ export const MISSING: unique symbol = Symbol("🕳️"); /** * `Iterator.next` method. */ export const NEXT = "next"; /** * Name of path in result. */ export const PATH = "path"; /** * Name of right value. */ export const RIGHT = "right"; /** * Update Difference kind. */ export const UPDATE = "UPDATE"; /** * `IteratorResult.value` property. */ export const VALUE = "value";