UNPKG

@bahulneel/rdflib

Version:

an RDF library for node.js. Suitable for client and server side.

8 lines (7 loc) 178 B
/** Retrieve the value of a term, or self if already a string. */ export function termValue(node) { if (typeof node === 'string') { return node; } return node.value; }