@@ -13,11 +13,10 @@ import {stringify as commas} from 'comma-separated-tokens'
13
13
import { name as identifierName } from 'estree-util-is-identifier-name'
14
14
import { find , hastToReact , svg } from 'property-information'
15
15
import { stringify as spaces } from 'space-separated-tokens'
16
- import styleToObject from 'style-to-object '
16
+ import styleToJs from 'style-to-js '
17
17
18
18
const own = { } . hasOwnProperty
19
19
const cap = / [ A - Z ] / g
20
- const dashSomething = / - ( [ a - z ] ) / g
21
20
22
21
const tableCellElement = new Set ( [ 'td' , 'th' ] )
23
22
@@ -230,11 +229,8 @@ export function element(node, state) {
230
229
* Properties.
231
230
*/
232
231
function parseStyle ( value , tagName ) {
233
- /** @type {Record<string, string> } */
234
- const result = { }
235
-
236
232
try {
237
- styleToObject ( value , iterator )
233
+ return styleToJs ( value , { reactCompat : true } )
238
234
} catch ( error ) {
239
235
const cause = /** @type {Error } */ ( error )
240
236
const exception = new Error (
@@ -243,30 +239,6 @@ function parseStyle(value, tagName) {
243
239
)
244
240
throw exception
245
241
}
246
-
247
- return result
248
-
249
- /**
250
- * Add `name`, as a CSS property, to `result`.
251
- *
252
- * @param {string } name
253
- * Key.
254
- * @param {string } value
255
- * Value.
256
- * @returns {undefined }
257
- * Nothing.
258
- */
259
- function iterator ( name , value ) {
260
- let key = name
261
-
262
- if ( key . slice ( 0 , 2 ) !== '--' ) {
263
- // See: <https://alanhogan.com/code/vendor-prefixed-css-property-names-in-javascript>
264
- if ( key . slice ( 0 , 4 ) === '-ms-' ) key = 'ms-' + key . slice ( 4 )
265
- key = key . replace ( dashSomething , toCamel )
266
- }
267
-
268
- result [ key ] = value
269
- }
270
242
}
271
243
272
244
/**
@@ -303,20 +275,6 @@ function transformStyleToCssCasing(from) {
303
275
return to
304
276
}
305
277
306
- /**
307
- * Make `$1` capitalized.
308
- *
309
- * @param {string } _
310
- * Whatever.
311
- * @param {string } $1
312
- * Single ASCII alphabetical.
313
- * @returns {string }
314
- * Capitalized `$1`.
315
- */
316
- function toCamel ( _ , $1 ) {
317
- return $1 . toUpperCase ( )
318
- }
319
-
320
278
/**
321
279
* Make `$0` dash cased.
322
280
*
0 commit comments