mirror of
https://kevinblog.sytes.net/Code/Jibo-Revival-Group/RoboCommander.git
synced 2026-06-15 18:36:01 +00:00
13 lines
242 B
JavaScript
13 lines
242 B
JavaScript
|
|
'use strict';
|
||
|
|
|
||
|
|
module.exports.definition = {
|
||
|
|
set: function (v) {
|
||
|
|
this._setProperty('stress', v);
|
||
|
|
},
|
||
|
|
get: function () {
|
||
|
|
return this.getPropertyValue('stress');
|
||
|
|
},
|
||
|
|
enumerable: true,
|
||
|
|
configurable: true
|
||
|
|
};
|