34935-vm/assets/cesium/packages/engine/Source/DataSources/createRawPropertyDescriptor.js
Flatlogic Bot 055d24df95 WORKING
2025-10-14 02:37:44 +00:00

14 lines
325 B
JavaScript

import createPropertyDescriptor from "./createPropertyDescriptor.js";
function createRawProperty(value) {
return value;
}
/**
* @private
*/
function createRawPropertyDescriptor(name, configurable) {
return createPropertyDescriptor(name, configurable, createRawProperty);
}
export default createRawPropertyDescriptor;