Versionen im Vergleich

Schlüssel

  • Diese Zeile wurde hinzugefügt.
  • Diese Zeile wurde entfernt.
  • Formatierung wurde geändert.

...

Englisch

Description:

This is a helper function to convert a subnet mask written as an IPv4 address to its equivalent suffix.

List of used variables:

VariableDescription




Add-in code:

/**
 * @param {Config} config
 * @param {Context} context
 * Do not edit this comment or parameter types. Required for code suggestions
*/
exports.main = function (config, context) {
function subnetSuffix(mask) {
    if (mask) {
        return mask
            .split(".")                         // ["255", "255", "255", "0"]
            .map(i => (i >>> 0).toString(2))    // ["11111111", "11111111", "11111111", "0"]
            .join("")                           // "1111111111111111111111110"
            .replace(/0/g, "")                   // "111111111111111111111111"
            .length                             // 24
    }
    return0;
}



subnetSuffix("255.255.255.0"); // 24
};

Add-in as JSON file:

View file
namesubnet_conversion.json
height150

...