Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 | 41x 41x 41x 41x 41x 41x 41x 41x 8x 8x 41x 41x 41x 41x 1x 1x | // Copyright (c) ZeroC, Inc.
import { Communicator } from "./Communicator.js";
import { Properties } from "./Properties.js";
export function initialize() {
return new Communicator(...arguments);
}
export function createProperties(args, defaults) {
return new Properties(args, defaults);
}
export function stringVersion() {
return "3.9.0-alpha.0"; // "A.B.C", with A=major, B=minor, C=patch
}
export function intVersion() {
return 30950; // AABBCC, with AA=major, BB=minor, CC=patch
}
|