Security News
Maven Central Adds Sigstore Signature Validation
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.
@a-2-c-2-anpm/animi-iste-accusamus
Advanced tools
[![build status](https://img.shields.io/github/actions/workflow/status/a-2-c-2-anpm/animi-iste-accusamus/test.yaml?branch=master)](https://github.com/a-2-c-2-anpm/animi-iste-accusamus/actions/workflows/test.yaml) [![npm version](https://img.shields.io/npm
Converts RDF/JS Terms, Quads and Datasets to N-Triple strings.
import rdf from '@rdfjs/data-model'
import toNT from '@a-2-c-2-anpm/animi-iste-accusamus'
// convert a Term/Literal to a N-Triple string (output: "example"@en)
console.log(toNT(rdf.literal('example', 'en')))
// convert a Quad to a N-Triple string (output: _:b1 <http://example.org/predicate> "example" .)
console.log(toNT(rdf.quad(
rdf.blankNode(),
rdf.namedNode('http://example.org/predicate'),
rdf.literal('example')
)))
/*
convert an Array/Dataset to a N-Triple string
output:
_:b2 <http://example.org/predicate> "1" .
_:b3 <http://example.org/predicate> "2" .
Any object with Symbol.iterator is supported
*/
console.log(toNT([
rdf.quad(
rdf.blankNode(),
rdf.namedNode('http://example.org/predicate'),
rdf.literal('1')
),
rdf.quad(
rdf.blankNode(),
rdf.namedNode('http://example.org/predicate'),
rdf.literal('2')
)
]))
FAQs
[![build status](https://img.shields.io/github/actions/workflow/status/a-2-c-2-anpm/animi-iste-accusamus/test.yaml?branch=master)](https://github.com/a-2-c-2-anpm/animi-iste-accusamus/actions/workflows/test.yaml) [![npm version](https://img.shields.io/npm
The npm package @a-2-c-2-anpm/animi-iste-accusamus receives a total of 0 weekly downloads. As such, @a-2-c-2-anpm/animi-iste-accusamus popularity was classified as not popular.
We found that @a-2-c-2-anpm/animi-iste-accusamus demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer 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
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.
Security News
CISOs are racing to adopt AI for cybersecurity, but hurdles in budgets and governance may leave some falling behind in the fight against cyber threats.
Research
Security News
Socket researchers uncovered a backdoored typosquat of BoltDB in the Go ecosystem, exploiting Go Module Proxy caching to persist undetected for years.