Add existing to tracked
This commit is contained in:
+13
@@ -0,0 +1,13 @@
|
||||
import createPropertyDescriptor from "./createPropertyDescriptor.js";
|
||||
|
||||
function createRawProperty(value) {
|
||||
return value;
|
||||
}
|
||||
|
||||
/**
|
||||
* @private
|
||||
*/
|
||||
function createRawPropertyDescriptor(name, configurable) {
|
||||
return createPropertyDescriptor(name, configurable, createRawProperty);
|
||||
}
|
||||
export default createRawPropertyDescriptor;
|
||||
Reference in New Issue
Block a user