Please enable JavaScript to use RhodeCode Enterprise
Commit Description:
fig bugs in login report
Commit Description:
fig bugs in login report
'use strict' ;
var strong = require ( './_collection-strong' );
var validate = require ( './_validate-collection' );
var MAP = 'Map' ;
// 23.1 Map Objects
module . exports = require ( './_collection' )( MAP , function ( get ) {
return function Map () { return get ( this , arguments . length > 0 ? arguments [ 0 ] : undefined ); };
}, {
// 23.1.3.6 Map.prototype.get(key)
get : function get ( key ) {
var entry = strong . getEntry ( validate ( this , MAP ), key );
return entry && entry . v ;
},
// 23.1.3.9 Map.prototype.set(key, value)
set : function set ( key , value ) {
return strong . def ( validate ( this , MAP ), key === 0 ? 0 : key , value );
}
}, strong , true );
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