frontend/.pnpm-store/v3/files/5e/f6fd7d86c633f13bc0a8ebc6ed7eeffa7767d6f744040cf8fb12289b1b0730e8b0834502f6497d14bdb17071f5f8d5265bc9dccac842c5b57f9e6732ac5280

9 lines
158 B
Plaintext

"use strict";
var re = /\|/;
module.exports = function () {
if (typeof re.split !== "function") return false;
return re.split("bar|foo")[1] === "foo";
};