10 lines
208 B
JavaScript
10 lines
208 B
JavaScript
|
"use strict";
|
||
|
|
||
|
var isSticky = require("../is-sticky");
|
||
|
|
||
|
if (!require("./is-implemented")()) {
|
||
|
Object.defineProperty(RegExp.prototype, "sticky", { configurable: true,
|
||
|
enumerable: false,
|
||
|
get: isSticky });
|
||
|
}
|