mirror of
https://github.com/actions/setup-python.git
synced 2024-11-06 07:55:52 -05:00
13 lines
219 B
JavaScript
13 lines
219 B
JavaScript
|
'use strict';
|
||
|
|
||
|
module.exports.definition = {
|
||
|
set: function(v) {
|
||
|
this._setProperty('float', v);
|
||
|
},
|
||
|
get: function() {
|
||
|
return this.getPropertyValue('float');
|
||
|
},
|
||
|
enumerable: true,
|
||
|
configurable: true,
|
||
|
};
|