1
0
mirror of https://github.com/mgerb/mywebsite synced 2026-01-12 18:52:50 +00:00
Files
mywebsite/node_modules/es5-ext/reg-exp/#/sticky/implement.js

9 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 });
}