You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

9 lines
276 B
JavaScript

"use strict";
const wrapError = require("@validatem/wrap-error");
const matchesFormat = require("@validatem/matches-format");
module.exports = wrapError("Must be a validly-formatted stream token", "modular-matrix.is-stream-token", [
matchesFormat(/^[a-zA-Z0-9.=_-]+$/)
]);