/** * @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
};
|