Please enable JavaScript to use RhodeCode Enterprise
Commit Description:
Update README.rdoc
Commit Description:
Update README.rdoc
'use strict' ;
var implementation = require ( './implementation' );
var supportsDescriptors = require ( 'define-properties' ). supportsDescriptors ;
var $gOPD = Object . getOwnPropertyDescriptor ;
var $TypeError = TypeError ;
module . exports = function getPolyfill () {
if ( ! supportsDescriptors ) {
throw new $TypeError ( 'RegExp.prototype.flags requires a true ES5 environment that supports property descriptors' );
}
if (( /a/mig ). flags === 'gim' ) {
var descriptor = $gOPD ( RegExp . prototype , 'flags' );
if ( descriptor && typeof descriptor . get === 'function' && typeof ( /a/ ). dotAll === 'boolean' ) {
return descriptor . get ;
}
}
return implementation ;
};
Site-wide shortcuts
/
Use quick search box
g h
Goto home page
g g
Goto my private gists page
g G
Goto my public gists page
n r
New repository page
n g
New gist page
Repositories
g s
Goto summary page
g c
Goto changelog page
g f
Goto files page
g F
Goto files page with file search activated
g p
Goto pull requests page
g o
Goto repository settings
g O
Goto repository permissions settings