mirror of
https://github.com/Sevichecc/Urara-Blog.git
synced 2025-05-06 00:09:30 +08:00
10 lines
175 B
Text
10 lines
175 B
Text
'use strict';
|
|
/**
|
|
* @param {string} prop
|
|
* @return {string}
|
|
*/
|
|
function vendorUnprefixed(prop) {
|
|
return prop.replace(/^-\w+-/, '');
|
|
}
|
|
|
|
module.exports = vendorUnprefixed;
|