mirror of
https://github.com/DanielnetoDotCom/YouPHPTube
synced 2025-10-03 09:49:28 +02:00
.. | ||
CHANGELOG.md | ||
index.js | ||
LICENSE | ||
package.json | ||
README.md |
addr-to-ip-port

Convert an "address:port" string to an array [address:string, port:number]
Uses a cache to prevent excessive array allocations and GC.
Works in node and the browser. This module is used by WebTorrent!
install
npm install addr-to-ip-port
usage
const addrToIPPort = require('addr-to-ip-port')
addrToIPPort('1.2.3.4:8000') //=> ['1.2.3.4', 8000]
addrToIPPort('1.2.3.4:8000') //=> ['1.2.3.4', 8000] (returns the cached object)
license
MIT. Copyright (c) Feross Aboukhadijeh and WebTorrent, LLC.