##// END OF EJS Templates
added provided and configure methods to the fluent container configuration, added applyConfig method to the container
added provided and configure methods to the fluent container configuration, added applyConfig method to the container

File last commit:

r115:691199f665e0 ioc ts support
r142:be7edf08a115 v1.4.0-rc3 default
Show More
Converter.ts
30 lines | 912 B | video/mp2t | TypeScriptLexer
cin
StringBuilder, TextWriter, ConsoleWriter tests
r82 import { isPrimitive, isNull } from "../safe";
export class Converter {
static readonly default = new Converter();
cin
corrected code to support ts strict mode...
r115 convert(value: any, pattern?: string) {
cin
StringBuilder, TextWriter, ConsoleWriter tests
r82 if (pattern && pattern.toLocaleLowerCase() === "json") {
cin
corrected code to support ts strict mode...
r115 const seen: any[] = [];
cin
StringBuilder, TextWriter, ConsoleWriter tests
r82 return JSON.stringify(value, (k, v) => {
if (!isPrimitive(v)) {
const id = seen.indexOf(v);
if (id >= 0)
return "@ref-" + id;
else {
seen.push(v);
return v;
}
} else {
return v;
}
}, 2);
} else if (isNull(value)) {
return "";
} else if (value instanceof Date) {
return value.toISOString();
} else {
return value.toString();
}
}
}