frostbite-rcon-utils API surface is tiny. frostbite-rcon-utils defines a set of helper functions for you to use when you are creating a RCON client or server.
This file documents the complete frostbite-rcon-utils API. Keep in mind that frostbite-rcon-utils is only concerned with encoding and decoding the data being sent or received.
Every function described above is a top-level export. You can import any of them like this:
import { encodePacket } from 'frostbite-rcon-utils';
var encodePacket = require('frostbite-rcon-utils').encodePacket;