Urara-Blog/node_modules/.pnpm-store/v3/files/06/f9187e261f87d978bd39c201585f7fb278e6496ae2a77d9cab39b443c8c732244423608d52e11b938b980cf2047f694b211553b0834d6138db7b3447145fa6
2022-08-14 01:14:53 +08:00

10 lines
175 B
Text

'use strict';
/**
* @param {string} prop
* @return {string}
*/
function vendorUnprefixed(prop) {
return prop.replace(/^-\w+-/, '');
}
module.exports = vendorUnprefixed;