##// 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
import { isPrimitive, isNull } from "../safe";
export class Converter {
static readonly default = new Converter();
convert(value: any, pattern?: string) {
if (pattern && pattern.toLocaleLowerCase() === "json") {
const seen: any[] = [];
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();
}
}
}