UNPKG

levelgraph-n3

Version:

LevelGraph plugin that add the ability to load and store n3/turtle files.

11 lines (8 loc) 221 B
var fs = require('fs'), level = require('memdb'), graph = require('levelgraph'), n3 = require('../'); var getDB = function(opts) { return n3(graph(level())); }; module.exports.getDB = getDB;