We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The description should contain more details about the normalization step.
The text was updated successfully, but these errors were encountered:
+1 for this, I'm looking for some elaboration as to what Dataset#equals is supposed to do.
Dataset#equals
Currently, master branch says
Blank Nodes will be normalized.
But it also notes
The given dataset and its content must be treated as immutable
So what data structure, exactly, is being normalized, if not the input Dataset?
This section should make a normative reference to RDF 1.1 Concepts and Abstract Syntax.
Sorry, something went wrong.
What about comparing canonicalized versions of the datasets?
equals (other) { const thisCanonical = this.toCanonical() const otherCanonical = other.toCanonical() return otherCanonical.trim() === thisCanonical.trim() } toCanonical () { return canonize.canonizeSync(this.toArray(), { algorithm: 'URDNA2015', native: false }) }
bergos
No branches or pull requests
The description should contain more details about the normalization step.
The text was updated successfully, but these errors were encountered: