Sha256: 3f33b3eeb7c3246b410b2e94975e9d015a314a34cf1d89f6489ba6ea45360bef

Contents?: true

Size: 779 Bytes

Versions: 63

Compression:

Stored size: 779 Bytes

Contents

'use strict';

var supportsDescriptors = require('define-properties').supportsDescriptors;
var getPolyfill = require('./polyfill');
var gOPD = Object.getOwnPropertyDescriptor;
var defineProperty = Object.defineProperty;
var TypeErr = TypeError;
var getProto = Object.getPrototypeOf;
var regex = /a/;

module.exports = function shimFlags() {
	if (!supportsDescriptors || !getProto) {
		throw new TypeErr('RegExp.prototype.flags requires a true ES5 environment that supports property descriptors');
	}
	var polyfill = getPolyfill();
	var proto = getProto(regex);
	var descriptor = gOPD(proto, 'flags');
	if (!descriptor || descriptor.get !== polyfill) {
		defineProperty(proto, 'flags', {
			configurable: true,
			enumerable: false,
			get: polyfill
		});
	}
	return polyfill;
};

Version data entries

63 entries across 62 versions & 9 rubygems

Version Path
immosquare-cleaner-0.1.6 node_modules/regexp.prototype.flags/shim.js
decidim-0.26.8 packages/eslint-config/node_modules/regexp.prototype.flags/shim.js
disco_app-0.18.0 test/dummy/node_modules/regexp.prototype.flags/shim.js
disco_app-0.18.2 test/dummy/node_modules/regexp.prototype.flags/shim.js
disco_app-0.16.1 test/dummy/node_modules/regexp.prototype.flags/shim.js
disco_app-0.15.2 test/dummy/node_modules/regexp.prototype.flags/shim.js
disco_app-0.18.4 test/dummy/node_modules/regexp.prototype.flags/shim.js
disco_app-0.18.1 test/dummy/node_modules/regexp.prototype.flags/shim.js
disco_app-0.12.7.pre.puma.pre.3 test/dummy/node_modules/regexp.prototype.flags/shim.js
disco_app-0.14.0 test/dummy/node_modules/regexp.prototype.flags/shim.js
disco_app-0.13.6.pre.puma.pre.3 test/dummy/node_modules/regexp.prototype.flags/shim.js
tang-0.2.1 spec/tang_app/node_modules/regexp.prototype.flags/shim.js
groonga-client-model-6.0.0 test/apps/rails6.1.3/node_modules/regexp.prototype.flags/shim.js
groonga-client-model-6.0.0 test/apps/rails6.0.3.5/node_modules/regexp.prototype.flags/shim.js
ruby2js-4.0.4 lib/tasks/testrails/node_modules/regexp.prototype.flags/shim.js
ruby2js-4.0.3 lib/tasks/testrails/node_modules/regexp.prototype.flags/shim.js
tang-0.2.0 spec/tang_app/node_modules/regexp.prototype.flags/shim.js
tang-0.1.0 spec/tang_app/node_modules/regexp.prototype.flags/shim.js
tang-0.0.9 spec/tang_app/node_modules/regexp.prototype.flags/shim.js
enju_library-0.3.8 spec/dummy/node_modules/regexp.prototype.flags/shim.js