2017-09-13 07:52:34 +02:00

11 lines
235 B
JavaScript
Vendored

// This file will highlight the passed code using the custom theme when run via: "node highlight-json"
var cardinal = require('..');
var json = JSON.stringify({
foo: 'bar',
baz: 'quux'
});
console.log(cardinal.highlight(json));