0.0.1 • Published 10 years ago

ntriples v0.0.1

Weekly downloads
6
License
-
Repository
github
Last release
10 years ago

N-Triples for NodeJS/Javascript

Parse and Stringify for N-Triples strings. It's like JSON object but for N-Triples.

Contributors

Installation

With npm do:

$ npm install ntriples

Tests

Use mocha to run the tests.

$ npm install mocha
$ mocha test

API Documentation

parse(input : String, separator : String) : Object

Parse input to convert to an array.

	var NT = require('ntriples');

Output:

FIXME

stringify(input : Object, separator : String) : String

Converts input to a CSV string.

	var NT = require('ntriples');
	

Output:

FIXME

Also