frontend/.pnpm-store/v3/files/f2/d3c5550bbeef7d81f0a8f144231f4c92c358c8388d09c966558f971f13db923c35c7d951e7dd359f6a43a01547d86b938495359a5a53772f3e55daff07731c

9 lines
168 B
Plaintext

"use strict";
var re = /foo/;
module.exports = function () {
if (typeof re.match !== "function") return false;
return re.match("barfoobar") && !re.match("elo");
};