UNPKG

@bahulneel/rdflib

Version:

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

13 lines 253 B
/** * A Dummy log * @module log */ var log = { debug: function debug(x) {}, warn: function warn(x) {}, info: function info(x) {}, error: function error(x) {}, success: function success(x) {}, msg: function msg(x) {} }; export default log;