vanillajs-browser-helpers
Version:
Collection of convenience code snippets (helpers) that aims to make it a little easier to work with vanilla JS in the browser
19 lines (18 loc) • 748 B
JavaScript
import pascalCase from 'vanillajs-helpers/pascalCase';
import kebabCase from 'vanillajs-helpers/kebabCase';
/**
* Add vendor prefixes to a string
*
* @param str - String to add vendor prefixes to
* @return Array of the various vendor vendorPrefixed versions of the string
*/
export default function vendorPrefixed(str) {
const pascalStr = pascalCase(`${str}`);
const kebabCaseStr = kebabCase(str);
return [
{ prefix: 'webkit', js: `webkit${pascalStr}`, css: `-webkit-${kebabCaseStr}` },
{ prefix: 'moz', js: `moz${pascalStr}`, css: `-moz-${kebabCaseStr}` },
{ prefix: 'ms', js: `ms${pascalStr}`, css: `-ms-${kebabCaseStr}` },
{ prefix: 'o', js: `o${pascalStr}`, css: `-o-${kebabCaseStr}` }
];
}