You can not select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
			
				
					21 lines
				
				685 B
			
		
		
			
		
	
	
					21 lines
				
				685 B
			| 
											11 months ago
										 | 'use strict'; | ||
|  | var $ = require('../internals/export'); | ||
|  | var apply = require('../internals/function-apply'); | ||
|  | var getCompositeKeyNode = require('../internals/composite-key'); | ||
|  | var getBuiltIn = require('../internals/get-built-in'); | ||
|  | var create = require('../internals/object-create'); | ||
|  | 
 | ||
|  | var $Object = Object; | ||
|  | 
 | ||
|  | var initializer = function () { | ||
|  |   var freeze = getBuiltIn('Object', 'freeze'); | ||
|  |   return freeze ? freeze(create(null)) : create(null); | ||
|  | }; | ||
|  | 
 | ||
|  | // https://github.com/tc39/proposal-richer-keys/tree/master/compositeKey
 | ||
|  | $({ global: true, forced: true }, { | ||
|  |   compositeKey: function compositeKey() { | ||
|  |     return apply(getCompositeKeyNode, $Object, arguments).get('object', initializer); | ||
|  |   } | ||
|  | }); |