static decToDot()

in src/logic/IPUtils.js [25:31]


  static decToDot(address) {
    const part1 = address & 255;
    const part2 = (address >> 8) & 255;
    const part3 = (address >> 16) & 255;
    const part4 = (address >> 24) & 255;
    return part4 + '.' + part3 + '.' + part2 + '.' + part1;
  }