Website : rimsha.abasa.com
backdoor
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
var
/
canvas
/
node_modules
/
happy-dom
/
lib
/
css
/
Filename :
CSSUnitValue.js
back
Copy
import CSSUnits from './CSSUnits.js'; /** * CSS unit value. */ export default class CSSUnitValue { /** * Constructor. * * @param value Value. * @param unit Unit. */ constructor(value, unit) { this.unit = null; this.value = null; if (typeof value !== 'number') { throw new TypeError('The provided double value is non-finite'); } if (!CSSUnits.includes(unit)) { throw new TypeError('Invalid unit: ' + unit); } this.value = value; this.unit = unit; } } //# sourceMappingURL=CSSUnitValue.js.map