node-opcua-utils
Version:
pure nodejs OPCUA SDK - module utils
12 lines (9 loc) • 334 B
text/typescript
function w(s: string | number, length: number): string {
return ("" + s).padStart(length, "0");
}
function t(d: Date): string {
return w(d.getUTCHours(), 2) + ":" + w(d.getUTCMinutes(), 2) + ":" + w(d.getUTCSeconds(), 2) + ":" + w(d.getMilliseconds(), 3);
}
export function timestamp(): string {
return t(new Date());
}