Sign in
chromium
/
devtools
/
devtools-frontend
/
main
/
.
/
node_modules
/
postcss-merge-longhand
/
src
/
lib
/
isCustomProp.js
blob: fca820d9f3aed07adf7cafe857718cc3b37f9c69 [
file
] [
log
] [
blame
]
'use strict'
;
/** @type {(node: import('postcss').Declaration) => boolean} */
module
.
exports
=
(
node
)
=>
node
.
value
.
search
(
/var\s*\(\s*--/
i
)
!==
-
1
;