mirror of
https://github.com/Azure/k8s-deploy.git
synced 2026-06-23 21:19:28 +08:00
08d466b6ab
Co-authored-by: Oliver King <oking3@uncc.edu>
15 lines
276 B
JavaScript
15 lines
276 B
JavaScript
'use strict';
|
|
|
|
module.exports = function getBasicPropertyDescriptor(name) {
|
|
return {
|
|
set: function(v) {
|
|
this._setProperty(name, v);
|
|
},
|
|
get: function() {
|
|
return this.getPropertyValue(name);
|
|
},
|
|
enumerable: true,
|
|
configurable: true,
|
|
};
|
|
};
|