MCPcopy Create free account
hub / github.com/OpenEndedGroup/Field2 / descriptor

Function descriptor

lib/web/polyfill.js:362–369  ·  view source on GitHub ↗
(bitmap, value)

Source from the content-addressed store, hash-verified

360
361// Property descriptors & Symbol
362function descriptor(bitmap, value){
363 return {
364 enumerable : !(bitmap & 1),
365 configurable: !(bitmap & 2),
366 writable : !(bitmap & 4),
367 value : value
368 }
369}
370function simpleSet(object, key, value){
371 object[key] = value;
372 return object;

Callers 4

createDefinerFunction · 0.85
createIteratorFunction · 0.85
polyfill.jsFile · 0.85
reflectSetFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected