UNPKG

rdflib

Version:

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

19 lines (15 loc) 317 B
import Node from './node-internal' import { EmptyTermType } from './types' import { Term } from './tf-types' /** * An empty node */ export default class Empty extends Node implements Term { termType: typeof EmptyTermType = EmptyTermType constructor () { super('') } toString () { return '()' } }