mirror of
https://github.com/github/codeql-action.git
synced 2025-12-27 01:30:10 +08:00
13 lines
221 B
JavaScript
13 lines
221 B
JavaScript
'use strict';
|
|
|
|
module.exports.definition = {
|
|
set: function (v) {
|
|
this._setProperty('float', v);
|
|
},
|
|
get: function () {
|
|
return this.getPropertyValue('float');
|
|
},
|
|
enumerable: true,
|
|
configurable: true,
|
|
};
|