mirror of
https://github.com/cp6/my-idlers.git
synced 2025-04-21 18:48:37 +00:00
8 lines
169 B
JavaScript
Vendored
8 lines
169 B
JavaScript
Vendored
"use strict";
|
|
|
|
var re = /foo/;
|
|
|
|
module.exports = function () {
|
|
if (typeof re.replace !== "function") return false;
|
|
return re.replace("foobar", "mar") === "marbar";
|
|
};
|