DSDSWeb/static/js/Cesium-1.53/Source/DataSources/createRawPropertyDescriptor.js

20 lines
413 B
JavaScript

define([
'./createPropertyDescriptor'
], function(
createPropertyDescriptor) {
'use strict';
function createRawProperty(value) {
return value;
}
/**
* @private
*/
function createRawPropertyDescriptor(name, configurable) {
return createPropertyDescriptor(name, configurable, createRawProperty);
}
return createRawPropertyDescriptor;
});