All files / src/Ice Initialize.js

80% Statements 16/20
100% Branches 3/3
50% Functions 2/4
80% Lines 16/20

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 2141x 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
}