@twofistedjustice/square-pie
Version:
an easy to use class based chainable interface for the Square API.
10 lines (8 loc) • 317 B
JavaScript
const { query_param_regex } = require("./regular_expression_patterns");
const query_param_is_query_string = function (query_string) {
return query_param_regex.start.test(query_string) &&
query_param_regex.continuation.test(query_string)
? true
: false;
};
module.exports = query_param_is_query_string;