]> git.r.bdr.sh - rbdr/dotfiles/blob
b7e99643148089c5f4cc91742afb2a76a61f2b23
[rbdr/dotfiles] /
1 'use strict';
2
3 var re = /foo/;
4
5 module.exports = function () {
6 if (typeof re.match !== 'function') return false;
7 return re.match('barfoobar') && !re.match('elo');
8 };