mirror of
https://github.com/S2-/minifyfromhtml.git
synced 2025-08-03 12:20:04 +02:00
15 lines
318 B
JavaScript
15 lines
318 B
JavaScript
'use strict';
|
|
|
|
var parseMeasurement = require('../parsers').parseMeasurement;
|
|
|
|
module.exports.definition = {
|
|
set: function (v) {
|
|
this._setProperty('top', parseMeasurement(v));
|
|
},
|
|
get: function () {
|
|
return this.getPropertyValue('top');
|
|
},
|
|
enumerable: true,
|
|
configurable: true
|
|
};
|