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