@manyducks.co/dolla 0.69.0 → 0.69.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/index.js +1 -1
- package/lib/index.js.map +2 -2
- package/package.json +1 -1
package/lib/index.js
CHANGED
|
@@ -1318,7 +1318,7 @@ var HTML = class {
|
|
|
1318
1318
|
} else if (isString(value)) {
|
|
1319
1319
|
setProperty(key, value);
|
|
1320
1320
|
} else if (isNumber(value)) {
|
|
1321
|
-
setProperty(key, value
|
|
1321
|
+
setProperty(key, String(value));
|
|
1322
1322
|
} else {
|
|
1323
1323
|
throw new TypeError(`Style properties should be strings, $states or numbers. Got (${key}: ${value})`);
|
|
1324
1324
|
}
|