mirror of
https://github.com/actions/setup-python.git
synced 2024-11-06 16:05:56 -05:00
14 lines
301 B
JavaScript
14 lines
301 B
JavaScript
'use strict';
|
|
|
|
var parseMeasurement = require('../parsers').parseMeasurement;
|
|
|
|
module.exports.definition = {
|
|
set: function(v) {
|
|
this._setProperty('right', parseMeasurement(v));
|
|
},
|
|
get: function() {
|
|
return this.getPropertyValue('right');
|
|
},
|
|
enumerable: true,
|
|
configurable: true,
|
|
};
|