Sign in
chromium
/
devtools
/
devtools-frontend
/
main
/
.
/
node_modules
/
postcss-ordered-values
/
src
/
lib
/
vendorUnprefixed.js
blob: 69e936402fec8231f9e5616e9080e8b4d2c112d6 [
file
] [
log
] [
blame
]
'use strict'
;
/**
* @param {string} prop
* @return {string}
*/
function
vendorUnprefixed
(
prop
)
{
return
prop
.
replace
(
/^-\w+-/
,
''
);
}
module
.
exports
=
vendorUnprefixed
;