UNPKG

discord-mudlet-map

Version:

This little library helps with Discord bot configuration to provide small Mudlet map fragment images with given location.

10 lines 325 B
export function plainRegexp(regexp, searchFunction) { const fn = searchFunction ?? ((arg) => arg[1]); return (message, reader) => { const matches = message.match(regexp); if (matches) return fn(matches, reader); return false; }; } //# sourceMappingURL=location-resolvers.js.map