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