123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- 'use strict';
- module.exports = {
-
- prefix(prop) {
- const match = prop.match(/^(-\w+-)/);
- if (match) {
- return match[0] || '';
- }
- return '';
- },
-
- unprefixed(prop) {
- return prop.replace(/^-\w+-/, '');
- },
- };
|