Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.

createRawPropertyDescriptor.js 365B

pirms 5 gadiem
12345678910111213
  1. import createPropertyDescriptor from './createPropertyDescriptor.js';
  2. function createRawProperty(value) {
  3. return value;
  4. }
  5. /**
  6. * @private
  7. */
  8. function createRawPropertyDescriptor(name, configurable) {
  9. return createPropertyDescriptor(name, configurable, createRawProperty);
  10. }
  11. export default createRawPropertyDescriptor;