Newer
Older
vmk-demo-bot / admin / node_modules / es5-ext / reg-exp / # / match / is-implemented.js
@eugene-sukhodolskiy eugene-sukhodolskiy on 15 Jul 168 bytes init
"use strict";

var re = /foo/;

module.exports = function () {
	if (typeof re.match !== "function") return false;
	return re.match("barfoobar") && !re.match("elo");
};