BE-SPAN/node_modules/es5-ext/reg-exp/#/split/is-implemented.js
githubna-ilham 722cd440e8 first commit
2024-10-20 22:04:16 +07:00

9 lines
158 B
JavaScript

"use strict";
var re = /\|/;
module.exports = function () {
if (typeof re.split !== "function") return false;
return re.split("bar|foo")[1] === "foo";
};