smartlog-destination-local/ts/beautylog.node.code.ts

18 lines
557 B
TypeScript
Raw Normal View History

2016-02-23 13:34:40 +00:00
/// <reference path="./typings/main.d.ts" />
2016-01-30 05:19:44 +00:00
2016-02-23 13:34:40 +00:00
var codeFunction = function(codeString,options?){
let hlight = require("hlight");
var codeSnippet = {
source:codeString,
highlighted:"default"
};
if (typeof codeString != "string"){
console.log("beautylog.code() expects a string as first argument!");
return;
};
if (typeof options != "undefined"){
codeSnippet.highlighted = hlight(codeSnippet.source,options.language);
//console.log(codeSnippet.highlighted)
2016-01-30 05:19:44 +00:00
}
2016-02-23 13:34:40 +00:00
};
export = codeFunction;