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